polygonjs-engine
Version:
node-based webgl 3D engine https://polygonjs.com
22 lines (21 loc) • 323 B
JavaScript
export class SavedConnectionPointsDataController {
constructor(_node) {
this._node = _node;
}
set_in(data) {
this._in = data;
}
set_out(data) {
this._out = data;
}
clear() {
this._in = void 0;
this._out = void 0;
}
in() {
return this._in;
}
out() {
return this._out;
}
}