Type alias GeometryObjectInfo

GeometryObjectInfo: {
    canCauseUpdate: boolean;
    implementedInterfaces: Iterable<Interface>;
}

Information about a GeometryObject. Can be used to quickly get info about an object on runtime.

Type declaration

  • canCauseUpdate: boolean

    Whether this object can directly trigger an update of the dependency tree (not by a dependecy update). An object can usually trigger an update if it has settable values or non-pure methods.

  • implementedInterfaces: Iterable<Interface>

    Runtime values representing interfaces implemented by this object.

Generated using TypeDoc