Skip to main content

Background3dPreset

Other

Background color preset for the 3D view. Available values: - Default: Default blue-gray vertical gradient background. - CenterGlow: Dark radial gradient that brightens toward the center. - LightBlue: Solid light-blue background. - Black: Solid black background. - White: Solid white background. - Gray: Gray radial gradient background.

Import

import ScriptingApi as api

# Access the class
# Background3dPreset is available via api.Background3dPreset

Enumeration Values

Enumeration Preset from Background3dPreset

ValueDescription
Background3dPreset.DefaultDefault option
Background3dPreset.CenterGlowCenterGlow option
Background3dPreset.LightBlueLightBlue option
Background3dPreset.BlackBlack option
Background3dPreset.WhiteWhite option
Background3dPreset.GrayGray option

Usage Example

import ScriptingApi as api

# Access enumeration values
value = api.Background3dPreset.Default

See Also