importProject
Imports another project from your workspace (must be shared and not private) into the current scene.
importProject(
projectId: string
): Promise<void>
Parameters
Description
Type
projectId
The id of the project from your workspace that you would like to load into the current scene.
Must be in UUID format, which you can get from the Dashboard project card menu.
string
Usage:
await modelApi.importProject('bf104b1b-db6f-4a0f-89a0-624cabb1c3c7');
Last updated