r3-legacy/src/r3-controls-d3-0.js

23 lines
468 B
JavaScript
Raw Normal View History

2019-07-25 22:22:32 +02:00
/**
2019-10-06 21:11:18 +02:00
* R3.Controls.D3
2019-07-25 22:22:32 +02:00
* @constructor
*/
2019-10-06 21:11:18 +02:00
R3.Controls.D3 = function() {
2019-07-25 22:22:32 +02:00
2019-10-06 21:11:18 +02:00
R3.Controls.call(this);
2019-07-25 22:22:32 +02:00
};
R3.Controls.D3.prototype = Object.create(R3.Controls.prototype);
R3.Controls.D3.prototype.constructor = R3.Controls.D3;
R3.Controls.D3.prototype.updateInstance = function(property) {
if (property === 'camera') {
console.warn('update camera instance update');
return;
}
R3.Controls.prototype.updateInstance.call(this, property);
};