UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

15 lines (14 loc) 299 B
/** * Represents a rotation structure with pitch and yaw * components. */ export default class PitchYawRotation { /** * Pitch (up-and-down) element of this rotation. */ "pitch": number; /** * Yaw component (left-to-right) of this position. */ "yaw": number; }