GeoPathFlag

Description

enum Tinman.Engine.Scenes.Data.GeoPathFlag

Enumeration of behavioural flags for geo path values.

Public / Constants

None

public constant None → (0:int32)

No behaviour flag.

Clamp

public constant Clamp → (1:int32)

The geo path value is an angle that clamps to [-90..90] degrees.

After reading, values may need to be clamped to the allowed range.

Wrap

public constant Wrap → (2:int32)

The geo path value is an angle that wraps around within [-180..180[ degrees.

Before writing, values may need to be unwrapped in order to allow numeric interpolation.

After reading, values may need to wrapped to the allowed range.