PathFollow.RotationMode/rotationMode - multiple declarations
Function PathFollow.rotationMode
Allows or forbids rotation on one or more axes, depending on the rotationmode
constants being used.
PathFollow . RotationMode rotationMode() nothrow @property @nogc;
void rotationMode
(
long v
) nothrow @property @nogc;
Enum PathFollow.RotationMode
enum RotationMode
: int { ... }
Enum members
Name | Description |
---|---|
rotationNone
|
Forbids the PathFollow to rotate. |
rotationOriented
|
Uses the up vector information in a Curve3D to enforce orientation. This rotation mode requires the Path 's Curve3D property to be set to true .
|
rotationXy
|
Allows the PathFollow to rotate in both the X, and Y axes. |
rotationXyz
|
Allows the PathFollow to rotate in any axis. |
rotationY
|
Allows the PathFollow to rotate in the Y axis only. |