Raanan Weber 5 år sedan
förälder
incheckning
0f44450ee7
1 ändrade filer med 2 tillägg och 0 borttagningar
  1. 2 0
      src/Maths/math.vector.ts

+ 2 - 0
src/Maths/math.vector.ts

@@ -1435,6 +1435,7 @@ export class Vector3 {
     }
     /**
      * Returns a new Vector3 set to (0.0, 0.0, 1.0)
+     * @param rightHandedSystem is the scene right-handed (negative z)
      * @returns a new forward Vector3
      */
     public static Forward(rightHandedSystem: boolean = false): Vector3 {
@@ -1442,6 +1443,7 @@ export class Vector3 {
     }
     /**
      * Returns a new Vector3 set to (0.0, 0.0, -1.0)
+     * @param rightHandedSystem is the scene right-handed (negative-z)
      * @returns a new forward Vector3
      */
     public static Backward(rightHandedSystem: boolean = false): Vector3 {