string StartupImage { get; set; }

robot_2Generated
code_blocksInput

Description

The StartupImage property specifies the splash screen image to be used during the startup of the application. This image is typically displayed while the application is loading.

Usage

To set the startup image for your application, assign a valid image path to the StartupImage property. The image should be in the vtex format, which is a texture format used by the Sandbox engine.

Example

// Example of setting the StartupImage property
var exportConfig = new Editor.ExportConfig();
exportConfig.StartupImage = "path/to/your/splashscreen.vtex";