UNPKG

@polygonjs/polygonjs

Version:

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

15 lines (12 loc) 314 B
/** * Update an instance attribute * * */ import {JsType} from '../../poly/registers/nodes/types/Js'; import {SetPointAttributeJsNode} from './SetPointAttribute'; export class SetInstanceAttributeJsNode extends SetPointAttributeJsNode { static override type() { return JsType.SET_INSTANCE_ATTRIBUTE; } }