Skip to main content

AnimationMode3d

Other

Animation mode for the 3D view. Available values: - Off: No animation; any active animation is stopped. - Spin: Continuously rotates the scene around the vertical axis. - Rock: Oscillates the scene back and forth.

Import

import ScriptingApi as api

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

Enumeration Values

Enumeration Mode from AnimationMode3d

ValueDescription
AnimationMode3d.OffOff option
AnimationMode3d.SpinSpin option
AnimationMode3d.RockRock option

Usage Example

import ScriptingApi as api

# Access enumeration values
value = api.AnimationMode3d.Off

See Also