@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
15 lines (14 loc) • 628 B
TypeScript
import { Constructor } from '../../../../../types/GlobalTypes';
import { RootManagerNode } from '../../Root';
export declare function SceneAutoUpdateParamConfig<TBase extends Constructor>(Base: TBase): {
new (...args: any[]): {
/** @param autoUpdate */
autoUpdate: import("../../../utils/params/ParamsConfig").ParamTemplate<import("../../../../index_all").ParamType.BOOLEAN>;
};
} & TBase;
export declare class SceneAutoUpdateController {
protected node: RootManagerNode;
constructor(node: RootManagerNode);
update(): Promise<void>;
static update(node: RootManagerNode): Promise<void>;
}