This commit is contained in:
Kim Ravn Hansen
2025-10-01 20:50:06 +02:00
parent 251e2e4fef
commit 6787489186
13 changed files with 509 additions and 211 deletions

View File

@@ -2,8 +2,7 @@ export const PI_OVER_TWO = Math.PI / 2;
/**
* Enum Cardinal Direction (east north west south)
* @constant
* @readonly
* @constant @readonly @enum {number}
*/
export const Orientation = {
/** @constant @readonly @type {number} Going east increases X */
@@ -18,7 +17,7 @@ export const Orientation = {
/**
* Enum Relative Direction (forward, left, right, backwards)
* @readonly
* @constant @readonly @enum {number}
*/
export const RelativeMovement = {
FORWARD: 0,