@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
17 lines (16 loc) • 576 B
JavaScript
;
import { CoreGraphNode } from "../../../core/graph/CoreGraphNode";
export class DisplayFlagGraphNode extends CoreGraphNode {
constructor(_owner) {
super(_owner.scene(), "DisplayFlagGraphNode");
this._owner = _owner;
this._owner_post_display_flag_node_set_dirty_bound = this._owner_post_display_flag_node_set_dirty.bind(this);
this._owner = _owner;
this.addPostDirtyHook(
"_owner_post_display_flag_node_set_dirty",
this._owner_post_display_flag_node_set_dirty_bound
);
}
_owner_post_display_flag_node_set_dirty() {
}
}