mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-05 02:00:06 +02:00
add jsdocs for BillboardMode
This commit is contained in:
parent
abef5c4d61
commit
645508de04
1 changed files with 15 additions and 0 deletions
|
@ -11,6 +11,21 @@
|
|||
|
||||
#include "QString"
|
||||
|
||||
/**jsdoc
|
||||
* <p>How an entity is billboarded.</p>
|
||||
* <table>
|
||||
* <thead>
|
||||
* <tr><th>Value</th><th>Description</th></tr>
|
||||
* </thead>
|
||||
* <tbody>
|
||||
* <tr><td><code>none</code></td><td>The entity will not be billboarded.</td></tr>
|
||||
* <tr><td><code>yaw</code></td><td>The entity will yaw, but not pitch, to face the camera. Its actual rotation will be ignored.</td></tr>
|
||||
* <tr><td><code>full</code></td><td>The entity will be billboarded to face the camera. Its actual rotation will be ignored.</td></tr>
|
||||
* </tbody>
|
||||
* </table>
|
||||
* @typedef {string} BillboardMode
|
||||
*/
|
||||
|
||||
enum class BillboardMode {
|
||||
NONE = 0,
|
||||
YAW,
|
||||
|
|
Loading…
Reference in a new issue