UNPKG

@babylonjs/core

Version:

Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.

11 lines (10 loc) 272 B
/** * Interface used to convey instancing context through execution nodes */ export interface INodeGeometryInstancingContext { /** * Gets the current instance index in the current flow * @returns the current index */ getInstanceIndex(): number; }