InitialNodeProperties¶
Type Alias InitialNodeProperties
InitialNodeProperties: {
appearanceURI?: string | null;
attachmentId?: number;
auxEnabled?: boolean;
comparisonGroup?: ComparisonGroup;
customProperties?: { [customPropertyName: string]: Serializable };
enabled?: boolean;
ghosted?: boolean;
localTransform?: [
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
];
outlined?: boolean;
pickable?: boolean;
real?: boolean;
realOccluder?: boolean;
renderMode?: RenderMode;
}
appearanceURI?: string | null;
attachmentId?: number;
auxEnabled?: boolean;
comparisonGroup?: ComparisonGroup;
customProperties?: { [customPropertyName: string]: Serializable };
enabled?: boolean;
ghosted?: boolean;
localTransform?: [
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
];
outlined?: boolean;
pickable?: boolean;
real?: boolean;
realOccluder?: boolean;
renderMode?: RenderMode;
}
Type declaration
OptionalappearanceURI?: string | nullSpecifies the initial appearance URI of the added node.
OptionalattachmentId?: numberSpecifies the initial attachment ID of the added node.
OptionalauxEnabled?: booleanSpecifies the initial aux enabled state of the added node.
OptionalcomparisonGroup?: ComparisonGroupSpecifies the initial comparison of the added node.
OptionalcustomProperties?: { [customPropertyName: string]: Serializable }Specifies the initial custom property states of the added node.
Optionalenabled?: booleanSpecifies the initial enabled state of the added node.
Optionalghosted?: booleanSpecifies the initial ghosted state of the added node.
OptionallocalTransform?: [
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
]Specifies the initial local transform of the added node.
Optionaloutlined?: booleanSpecifies the initial outlined state of the added node.
Optionalpickable?: booleanSpecifies the initial pickable state of the added node.
Optionalreal?: booleanSpecifies the initial real state of the added node.
OptionalrealOccluder?: booleanSpecifies the initial real occluder state of the added node.
OptionalrenderMode?: RenderModeSpecifies the initial render mode of the added node.
Defines initial properties of a new node. These become the default values for the new node, i.e. InstanceGraphAPI.resetProperty and InstanceGraphAPI.resetProperties will reset to these values.