@@ -41,6 +41,7 @@ oop_only_methods:
4141 type : method
4242 description : Returns the X component of the vector.
4343 signature : float Vector4:getX ( )
44+ variable : x
4445 returns :
4546 type : float
4647 description : The X coordinate.
@@ -49,6 +50,7 @@ oop_only_methods:
4950 type : method
5051 description : Sets the X component of the vector.
5152 signature : nil Vector4:setX ( float x )
53+ variable : x
5254 parameters :
5355 - name : x
5456 type : float
@@ -58,6 +60,7 @@ oop_only_methods:
5860 type : method
5961 description : Returns the Y component of the vector.
6062 signature : float Vector4:getY ( )
63+ variable : " y"
6164 returns :
6265 type : float
6366 description : The Y coordinate.
@@ -66,6 +69,7 @@ oop_only_methods:
6669 type : method
6770 description : Sets the Y component of the vector.
6871 signature : nil Vector4:setY ( float y )
72+ variable : " y"
6973 parameters :
7074 - name : " y"
7175 type : float
@@ -75,6 +79,7 @@ oop_only_methods:
7579 type : method
7680 description : Returns the Z component of the vector.
7781 signature : float Vector4:getZ ( )
82+ variable : z
7883 returns :
7984 type : float
8085 description : The Z coordinate.
@@ -83,6 +88,7 @@ oop_only_methods:
8388 type : method
8489 description : Sets the Z component of the vector.
8590 signature : nil Vector4:setZ ( float z )
91+ variable : z
8692 parameters :
8793 - name : z
8894 type : float
@@ -92,6 +98,7 @@ oop_only_methods:
9298 type : method
9399 description : Returns the W component of the vector.
94100 signature : float Vector4:getW ( )
101+ variable : w
95102 returns :
96103 type : float
97104 description : The W coordinate.
@@ -100,6 +107,7 @@ oop_only_methods:
100107 type : method
101108 description : Sets the W component of the vector.
102109 signature : nil Vector4:setW ( float w )
110+ variable : w
103111 parameters :
104112 - name : w
105113 type : float
@@ -119,6 +127,7 @@ oop_only_methods:
119127 description : |
120128 Returns a normalized version of the vector without modifying the original.
121129 signature : Vector4 Vector4:getNormalized ( )
130+ variable : normalized
122131 returns :
123132 type : Vector4
124133 description : A new normalized vector.
@@ -128,6 +137,7 @@ oop_only_methods:
128137 description : |
129138 Returns the length (magnitude) of the vector.
130139 signature : float Vector4:getLength ( )
140+ variable : length
131141 returns :
132142 type : float
133143 description : The vector's length.
@@ -137,6 +147,7 @@ oop_only_methods:
137147 description : |
138148 Returns the squared length of the vector (useful to anil square root operations).
139149 signature : float Vector4:getSquaredLength ( )
150+ variable : squaredLength
140151 returns :
141152 type : float
142153 description : The squared length of the vector.
0 commit comments