ProjectData
interface ProjectSaveData
{
data: Uint8Array;
pngPreview: Uint8Array;
name: string;
id: string;
}
Properties
Name | Type | Description |
---|---|---|
data | Uint8Array | Exported project scene as binary data. |
pngPreview | Uint8Array | Project preview image as binary data (PNG format encoded) |
name | string | Project name |
id | string | Project ID |
Description
This structure contains informations about the project. It's obtained from getCurrentProject method.