Cluster Creator Kit Script Reference
    Preparing search index...

    Interface AxisAngle

    A data that represents rotation as a pair of an axis and an angle. The value can be obtained by Quaternion.toAxisAngle.

    interface AxisAngle {
        angle: number;
        axis: Vector3;
    }
    Index

    Properties

    Properties

    angle: number

    The angle of rotation in degrees, from 0 to 360.

    axis: Vector3

    A vector that represents the axis of rotation.