Refactored more of Entities and BlockEntities to use Vector3. (#4403)
This commit is contained in:
@@ -1150,6 +1150,78 @@ end
|
||||
{
|
||||
Notes = "<b>OBSOLETE</b>, use Abs() instead.",
|
||||
},
|
||||
addedX =
|
||||
{
|
||||
Params =
|
||||
{
|
||||
{
|
||||
Name = "ofs",
|
||||
Type = "number",
|
||||
},
|
||||
},
|
||||
Returns =
|
||||
{
|
||||
{
|
||||
Type = "Vector3d",
|
||||
},
|
||||
},
|
||||
Notes = "Returns a copy of the vector, moved by the specified offset on the X axis",
|
||||
},
|
||||
addedXZ =
|
||||
{
|
||||
Params =
|
||||
{
|
||||
{
|
||||
Name = "ofsX",
|
||||
Type = "number",
|
||||
},
|
||||
{
|
||||
Name = "ofsZ",
|
||||
Type = "number",
|
||||
},
|
||||
},
|
||||
Returns =
|
||||
{
|
||||
{
|
||||
Type = "Vector3d",
|
||||
},
|
||||
},
|
||||
Notes = "Returns a copy of the vector, moved by the specified offsets on the X and Z axes",
|
||||
},
|
||||
addedY =
|
||||
{
|
||||
Params =
|
||||
{
|
||||
{
|
||||
Name = "ofs",
|
||||
Type = "number",
|
||||
},
|
||||
},
|
||||
Returns =
|
||||
{
|
||||
{
|
||||
Type = "Vector3d",
|
||||
},
|
||||
},
|
||||
Notes = "Returns a copy of the vector, moved by the specified offset on the Y axis",
|
||||
},
|
||||
addedZ =
|
||||
{
|
||||
Params =
|
||||
{
|
||||
{
|
||||
Name = "ofs",
|
||||
Type = "number",
|
||||
},
|
||||
},
|
||||
Returns =
|
||||
{
|
||||
{
|
||||
Type = "Vector3d",
|
||||
},
|
||||
},
|
||||
Notes = "Returns a copy of the vector, moved by the specified offset on the Z axis",
|
||||
},
|
||||
Clamp =
|
||||
{
|
||||
Params =
|
||||
@@ -1643,6 +1715,78 @@ end
|
||||
{
|
||||
Notes = "<b>OBSOLETE</b>, use Abs() instead.",
|
||||
},
|
||||
addedX =
|
||||
{
|
||||
Params =
|
||||
{
|
||||
{
|
||||
Name = "ofs",
|
||||
Type = "number",
|
||||
},
|
||||
},
|
||||
Returns =
|
||||
{
|
||||
{
|
||||
Type = "Vector3f",
|
||||
},
|
||||
},
|
||||
Notes = "Returns a copy of the vector, moved by the specified offset on the X axis",
|
||||
},
|
||||
addedXZ =
|
||||
{
|
||||
Params =
|
||||
{
|
||||
{
|
||||
Name = "ofsX",
|
||||
Type = "number",
|
||||
},
|
||||
{
|
||||
Name = "ofsZ",
|
||||
Type = "number",
|
||||
},
|
||||
},
|
||||
Returns =
|
||||
{
|
||||
{
|
||||
Type = "Vector3f",
|
||||
},
|
||||
},
|
||||
Notes = "Returns a copy of the vector, moved by the specified offsets on the X and Z axes",
|
||||
},
|
||||
addedY =
|
||||
{
|
||||
Params =
|
||||
{
|
||||
{
|
||||
Name = "ofs",
|
||||
Type = "number",
|
||||
},
|
||||
},
|
||||
Returns =
|
||||
{
|
||||
{
|
||||
Type = "Vector3f",
|
||||
},
|
||||
},
|
||||
Notes = "Returns a copy of the vector, moved by the specified offset on the Y axis",
|
||||
},
|
||||
addedZ =
|
||||
{
|
||||
Params =
|
||||
{
|
||||
{
|
||||
Name = "ofs",
|
||||
Type = "number",
|
||||
},
|
||||
},
|
||||
Returns =
|
||||
{
|
||||
{
|
||||
Type = "Vector3f",
|
||||
},
|
||||
},
|
||||
Notes = "Returns a copy of the vector, moved by the specified offset on the Z axis",
|
||||
},
|
||||
Clamp =
|
||||
{
|
||||
Params =
|
||||
@@ -2168,6 +2312,78 @@ end
|
||||
{
|
||||
Notes = "<b>OBSOLETE</b>, use Abs() instead.",
|
||||
},
|
||||
addedX =
|
||||
{
|
||||
Params =
|
||||
{
|
||||
{
|
||||
Name = "ofs",
|
||||
Type = "number",
|
||||
},
|
||||
},
|
||||
Returns =
|
||||
{
|
||||
{
|
||||
Type = "Vector3i",
|
||||
},
|
||||
},
|
||||
Notes = "Returns a copy of the vector, moved by the specified offset on the X axis",
|
||||
},
|
||||
addedXZ =
|
||||
{
|
||||
Params =
|
||||
{
|
||||
{
|
||||
Name = "ofsX",
|
||||
Type = "number",
|
||||
},
|
||||
{
|
||||
Name = "ofsZ",
|
||||
Type = "number",
|
||||
},
|
||||
},
|
||||
Returns =
|
||||
{
|
||||
{
|
||||
Type = "Vector3i",
|
||||
},
|
||||
},
|
||||
Notes = "Returns a copy of the vector, moved by the specified offsets on the X and Z axes",
|
||||
},
|
||||
addedY =
|
||||
{
|
||||
Params =
|
||||
{
|
||||
{
|
||||
Name = "ofs",
|
||||
Type = "number",
|
||||
},
|
||||
},
|
||||
Returns =
|
||||
{
|
||||
{
|
||||
Type = "Vector3i",
|
||||
},
|
||||
},
|
||||
Notes = "Returns a copy of the vector, moved by the specified offset on the Y axis",
|
||||
},
|
||||
addedZ =
|
||||
{
|
||||
Params =
|
||||
{
|
||||
{
|
||||
Name = "ofs",
|
||||
Type = "number",
|
||||
},
|
||||
},
|
||||
Returns =
|
||||
{
|
||||
{
|
||||
Type = "Vector3i",
|
||||
},
|
||||
},
|
||||
Notes = "Returns a copy of the vector, moved by the specified offset on the Z axis",
|
||||
},
|
||||
Clamp =
|
||||
{
|
||||
Params =
|
||||
|
||||
Reference in New Issue
Block a user