UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

19 lines (18 loc) 655 B
/** * Returns false when viewing the scene in the editor, and true otherwise. * * */ import { TypedJsNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController'; declare class PlayerModeJsParamsConfig extends NodeParamsConfig { } export declare class PlayerModeJsNode extends TypedJsNode<PlayerModeJsParamsConfig> { paramsConfig: PlayerModeJsParamsConfig; static type(): string; static readonly OUTPUT_NAME = "mode"; initializeNode(): void; setLines(linesController: JsLinesCollectionController): void; } export {};