polygonjs-engine
Version:
node-based webgl 3D engine https://polygonjs.com
18 lines (17 loc) • 403 B
JavaScript
import {TypedContainer} from "./_Base";
export class AnimationContainer extends TypedContainer {
set_content(content) {
super.set_content(content);
}
set_timeline_builder(timeline_builder) {
return this.set_content(timeline_builder);
}
timeline_builder() {
return this.content();
}
coreContentCloned() {
if (this._content) {
return this._content.clone();
}
}
}