@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
19 lines (18 loc) • 703 B
TypeScript
/**
* get the object's sibbling
*
*
*/
import { TypedJsNode } from './_Base';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController';
declare class GetSibblingJsParamsConfig extends NodeParamsConfig {
offset: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.INTEGER>;
}
export declare class GetSibblingJsNode extends TypedJsNode<GetSibblingJsParamsConfig> {
readonly paramsConfig: GetSibblingJsParamsConfig;
static type(): string;
initializeNode(): void;
setLines(shadersCollectionController: JsLinesCollectionController): void;
}
export {};