diff --git a/libraries/shared/src/shared/Camera.cpp b/libraries/shared/src/shared/Camera.cpp index 6727f89d29..c96b4ed28f 100644 --- a/libraries/shared/src/shared/Camera.cpp +++ b/libraries/shared/src/shared/Camera.cpp @@ -25,38 +25,45 @@ *
"first person"
The camera is positioned such that you have the same view as your avatar. The camera moves and rotates with + * your avatar.
+ *Legacy first person camera mode.
"first person look at"
The camera is positioned such that you have the same view as your avatar. The camera moves and rotates with + * your avatar's head.
+ *Default first person camera mode.
"third person"
The camera is positioned such that you have a view from just behind your avatar. The camera moves and rotates + * with your avatar.
+ *Legacy third person camera camera mode. To re-enable this behavior:
+ *Camera.mode = "third person";
"look at"
The camera is positioned behind your avatar. The camera moves and rotates independently from your avatar. The + * avatar's head always faces the camera look at point.
+ *Default third person camera mode.
"selfie"
The camera is positioned in front of your avatar. The camera moves and rotates independently from your avatar. + * Your avatar's head is always facing the camera.
Default "look at myself" camera mode.
"mirror"
The camera is positioned such that you are looking directly at your avatar. The camera moves and rotates with + * your avatar.
+ *Legacy "look at myself" behavior. To re-enable this behavior:
+ *Camera.mode = "mirror";