Skip to main content
Version: 19.1.0

Cloud Projects Settings

This section covers additional notes for the functions: LoadCloudProject, CreateCloudProject, ImportCloudProject, RestoreCloudProject

All four functions take in a cloudSettings dict, that have the following keys:

resolve.CLOUD_SETTING_PROJECT_NAME: String, ["" by default]
resolve.CLOUD_SETTING_PROJECT_MEDIA_PATH: String, ["" by default]
resolve.CLOUD_SETTING_IS_COLLAB: Bool, [False by default]
resolve.CLOUD_SETTING_SYNC_MODE: syncMode (see below), [resolve.CLOUD_SYNC_PROXY_ONLY by default]
resolve.CLOUD_SETTING_IS_CAMERA_ACCESS: Bool [False by default]
note

ProjectManager:LoadCloudProject only honour the following keys:

resolve.CLOUD_SETTING_PROJECT_NAME
resolve.CLOUD_SETTING_PROJECT_MEDIA_PATH
resolve.CLOUD_SETTING_SYNC_MODE.

Only 1st load on a given system will honour all 3 settings. Subsequent loads will honour only resolve.CLOUD_SETTING_PROJECT_NAME

Where syncMode is one of the following values:

resolve.CLOUD_SYNC_NONE;
resolve.CLOUD_SYNC_PROXY_ONLY;
resolve.CLOUD_SYNC_PROXY_AND_ORIG;
note

LoadCloudProject, CreateCloudProject, ImportCloudProject, RestoreCloudProject require resolve.PROJECT_MEDIA_PATH to be defined.

LoadCloudProject and CreateCloudProject also requires resolve.PROJECT_NAME to be defined.