Warning
Nightly releases are generated automatically from the latest source code and are intended for experimental purposes only. These builds may contain incomplete or untested features, bugs, or security vulnerabilities, and as such, are not for production use. Users should be aware that nightly releases may cause unexpected behavior, data loss, or system instability. Use of these releases is at the user's own risk, and it is advised to have adequate backups before testing. The software is provided as is with no guarantees or support.
AddNodeOptions¶
Type Alias AddNodeOptions
autoExpand?: boolean;
cacheStrategy?: CacheStrategy;
dataURI?: string;
initialProperties?: InitialNodeProperties;
label?: string;
mimeType?: string;
parentId?: number;
}
Type declaration
Optional
autoExpand?: booleanThe
autoExpand
flag can be used to automatically expand the added node to allow direct interaction with the underlying data.Optional
cacheStrategy?: CacheStrategySpecifies the strategy which is used when a data cache is requested from the instant3Dhub.
Optional
dataURI?: stringSpecifies the URI to the data resource.
Optional
initialProperties?: InitialNodePropertiesSpecifies initial properties of the added node. These become the default values for this node, i.e. InstanceGraphAPI.resetProperty and InstanceGraphAPI.resetProperties will reset to these values.
Optional
label?: stringSpecifies a custom label for the added node.
Optional
mimeType?: stringSpecifies the mime type of the data resource.
Per default the mime type is automatically detected and an override is only necessary in special cases. Valid mime types can be retrieved from the HubAPI.requestSupportedContentTypes method.
Optional
parentId?: numberSpecifies the parent node ID of the added node.
Options for adding a new node to the scene.