|
@@ -1237,6 +1237,7 @@ declare module "babylonjs/Maths/math" {
|
|
|
*/
|
|
|
z: number;
|
|
|
private static _UpReadOnly;
|
|
|
+ private static _ZeroReadOnly;
|
|
|
/**
|
|
|
* Creates a new Vector3 object from the given x, y, z (floats) coordinates.
|
|
|
* @param x defines the first coordinates (on X axis)
|
|
@@ -1661,6 +1662,10 @@ declare module "babylonjs/Maths/math" {
|
|
|
*/
|
|
|
static readonly UpReadOnly: DeepImmutable<Vector3>;
|
|
|
/**
|
|
|
+ * Gets a zero Vector3 that must not be updated
|
|
|
+ */
|
|
|
+ static readonly ZeroReadOnly: DeepImmutable<Vector3>;
|
|
|
+ /**
|
|
|
* Returns a new Vector3 set to (0.0, -1.0, 0.0)
|
|
|
* @returns a new down Vector3
|
|
|
*/
|
|
@@ -61641,6 +61646,7 @@ declare module BABYLON {
|
|
|
*/
|
|
|
z: number;
|
|
|
private static _UpReadOnly;
|
|
|
+ private static _ZeroReadOnly;
|
|
|
/**
|
|
|
* Creates a new Vector3 object from the given x, y, z (floats) coordinates.
|
|
|
* @param x defines the first coordinates (on X axis)
|
|
@@ -62065,6 +62071,10 @@ declare module BABYLON {
|
|
|
*/
|
|
|
static readonly UpReadOnly: DeepImmutable<Vector3>;
|
|
|
/**
|
|
|
+ * Gets a zero Vector3 that must not be updated
|
|
|
+ */
|
|
|
+ static readonly ZeroReadOnly: DeepImmutable<Vector3>;
|
|
|
+ /**
|
|
|
* Returns a new Vector3 set to (0.0, -1.0, 0.0)
|
|
|
* @returns a new down Vector3
|
|
|
*/
|