summaryrefslogtreecommitdiffstats
path: root/Server
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2020-04-18 11:44:35 +0200
committerGitHub <noreply@github.com>2020-04-18 11:44:35 +0200
commita55f61548ef050f29aab96095b80af4c9f046281 (patch)
tree4c03607df6b5dd97af28f9748493a1bb26fd5d50 /Server
parentFixing washing away of redstone mechanisms (#4665) (diff)
downloadcuberite-a55f61548ef050f29aab96095b80af4c9f046281.tar
cuberite-a55f61548ef050f29aab96095b80af4c9f046281.tar.gz
cuberite-a55f61548ef050f29aab96095b80af4c9f046281.tar.bz2
cuberite-a55f61548ef050f29aab96095b80af4c9f046281.tar.lz
cuberite-a55f61548ef050f29aab96095b80af4c9f046281.tar.xz
cuberite-a55f61548ef050f29aab96095b80af4c9f046281.tar.zst
cuberite-a55f61548ef050f29aab96095b80af4c9f046281.zip
Diffstat (limited to 'Server')
-rw-r--r--Server/Plugins/APIDump/APIDesc.lua84
-rw-r--r--Server/Plugins/APIDump/Classes/Geometry.lua55
2 files changed, 111 insertions, 28 deletions
diff --git a/Server/Plugins/APIDump/APIDesc.lua b/Server/Plugins/APIDump/APIDesc.lua
index fe2af77e6..80023274f 100644
--- a/Server/Plugins/APIDump/APIDesc.lua
+++ b/Server/Plugins/APIDump/APIDesc.lua
@@ -13214,46 +13214,74 @@ end
{
AddFaceDirection =
{
- Params =
{
+ Params =
{
- Name = "BlockX",
- Type = "number",
- },
- {
- Name = "BlockY",
- Type = "number",
- },
- {
- Name = "BlockZ",
- Type = "number",
- },
- {
- Name = "BlockFace",
- Type = "eBlockFace",
+ {
+ Name = "BlockX",
+ Type = "number",
+ },
+ {
+ Name = "BlockY",
+ Type = "number",
+ },
+ {
+ Name = "BlockZ",
+ Type = "number",
+ },
+ {
+ Name = "BlockFace",
+ Type = "eBlockFace",
+ },
+ {
+ Name = "IsInverse",
+ Type = "boolean",
+ IsOptional = true,
+ },
},
+ Returns =
{
- Name = "IsInverse",
- Type = "boolean",
- IsOptional = true,
+ {
+ Name = "BlockX",
+ Type = "number",
+ },
+ {
+ Name = "BlockY",
+ Type = "number",
+ },
+ {
+ Name = "BlockZ",
+ Type = "number",
+ },
},
+ Notes = "Returns the coords of a block adjacent to the specified block through the specified {{Globals#BlockFaces|face}}",
},
- Returns =
{
+ Params =
{
- Name = "BlockX",
- Type = "number",
- },
- {
- Name = "BlockY",
- Type = "number",
+ {
+ Name = "BlockPos",
+ Type = "Vector3i",
+ },
+ {
+ Name = "BlockFace",
+ Type = "eBlockFace",
+ },
+ {
+ Name = "IsInverse",
+ Type = "boolean",
+ IsOptional = true,
+ },
},
+ Returns =
{
- Name = "BlockZ",
- Type = "number",
+ {
+ Name = "BlockPos",
+ Type = "Vector3i",
+ },
},
+ Notes = "Returns the coords of a block adjacent to the specified block through the specified {{Globals#BlockFaces|face}}",
},
- Notes = "Returns the coords of a block adjacent to the specified block through the specified {{Globals#BlockFaces|face}}",
},
Base64Decode =
{
diff --git a/Server/Plugins/APIDump/Classes/Geometry.lua b/Server/Plugins/APIDump/Classes/Geometry.lua
index 6a284feda..475cab2f2 100644
--- a/Server/Plugins/APIDump/Classes/Geometry.lua
+++ b/Server/Plugins/APIDump/Classes/Geometry.lua
@@ -542,6 +542,11 @@ return
},
},
},
+
+
+
+
+
cCuboid =
{
Desc = [[
@@ -911,6 +916,11 @@ return
},
},
},
+
+
+
+
+
cLineBlockTracer =
{
Desc = [[
@@ -1118,6 +1128,11 @@ end
},
},
},
+
+
+
+
+
Vector3d =
{
Desc = [[
@@ -1208,6 +1223,16 @@ end
},
Notes = "Returns a copy of the vector, moved by the specified offset on the Z axis",
},
+ Ceil =
+ {
+ Returns =
+ {
+ {
+ Type = "Vector3i",
+ },
+ },
+ Notes = "Returns a new {{Vector3i}} object with coords set to math.ceil of this vector's coords.",
+ },
Clamp =
{
Params =
@@ -1683,6 +1708,11 @@ end
},
},
},
+
+
+
+
+
Vector3f =
{
Desc = [[
@@ -1773,6 +1803,16 @@ end
},
Notes = "Returns a copy of the vector, moved by the specified offset on the Z axis",
},
+ Ceil =
+ {
+ Returns =
+ {
+ {
+ Type = "Vector3i",
+ },
+ },
+ Notes = "Returns a new {{Vector3i}} object with coords set to math.ceil of this vector's coords.",
+ },
Clamp =
{
Params =
@@ -2280,6 +2320,11 @@ end
},
},
},
+
+
+
+
+
Vector3i =
{
Desc = [[
@@ -2370,6 +2415,16 @@ end
},
Notes = "Returns a copy of the vector, moved by the specified offset on the Z axis",
},
+ Ceil =
+ {
+ Returns =
+ {
+ {
+ Type = "Vector3i",
+ },
+ },
+ Notes = "Returns a new {{Vector3i}} object with coords set to math.ceil of this vector's coords. Normally not too useful with integer-only vectors, but still included for API completeness.",
+ },
Clamp =
{
Params =