diff --git a/libraries/shared/src/BillboardMode.h b/libraries/shared/src/BillboardMode.h index 7f3e79d453..050f939941 100644 --- a/libraries/shared/src/BillboardMode.h +++ b/libraries/shared/src/BillboardMode.h @@ -11,6 +11,21 @@ #include "QString" +/**jsdoc + *

How an entity is billboarded.

+ * + * + * + * + * + * + * + * + * + *
ValueDescription
noneThe entity will not be billboarded.
yawThe entity will yaw, but not pitch, to face the camera. Its actual rotation will be ignored.
fullThe entity will be billboarded to face the camera. Its actual rotation will be ignored.
+ * @typedef {string} BillboardMode + */ + enum class BillboardMode { NONE = 0, YAW,