@minecraft/server-editor 0.1.0-beta.1.21.80-preview.21 → 0.1.0-beta.1.21.80-preview.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +14 -8
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1636,32 +1636,38 @@ export class BlockUtilities {
|
|
|
1636
1636
|
* @remarks
|
|
1637
1637
|
* This function can't be called in read-only mode.
|
|
1638
1638
|
*
|
|
1639
|
-
|
|
1639
|
+
*/
|
|
1640
|
+
getDimensionLocationBoundingBox(): minecraftserver.BlockBoundingBox;
|
|
1641
|
+
/**
|
|
1642
|
+
* @remarks
|
|
1643
|
+
* This function can't be called in read-only mode.
|
|
1640
1644
|
*
|
|
1641
|
-
* {@link Error}
|
|
1642
1645
|
*/
|
|
1643
|
-
|
|
1646
|
+
getDimensionMaxLocation(): minecraftserver.Vector3;
|
|
1644
1647
|
/**
|
|
1645
1648
|
* @remarks
|
|
1646
1649
|
* This function can't be called in read-only mode.
|
|
1647
1650
|
*
|
|
1648
1651
|
*/
|
|
1649
|
-
|
|
1652
|
+
getDimensionMinLocation(): minecraftserver.Vector3;
|
|
1650
1653
|
/**
|
|
1651
1654
|
* @remarks
|
|
1652
1655
|
* This function can't be called in read-only mode.
|
|
1653
1656
|
*
|
|
1657
|
+
* @throws This function can throw errors.
|
|
1658
|
+
*
|
|
1659
|
+
* {@link Error}
|
|
1654
1660
|
*/
|
|
1655
|
-
|
|
1661
|
+
getFacePreviewSelection(properties?: QuickExtrudeProperties): minecraftserver.ListBlockVolume;
|
|
1656
1662
|
/**
|
|
1657
1663
|
* @remarks
|
|
1658
1664
|
* This function can't be called in read-only mode.
|
|
1659
1665
|
*
|
|
1660
1666
|
*/
|
|
1661
|
-
|
|
1667
|
+
isLocationInsideCurrentDimensionBounds(
|
|
1662
1668
|
locationOrVolumeOrBounds:
|
|
1669
|
+
| minecraftserver.BlockBoundingBox
|
|
1663
1670
|
| minecraftserver.BlockVolumeBase
|
|
1664
|
-
| minecraftserver.BoundingBox
|
|
1665
1671
|
| RelativeVolumeListBlockVolume
|
|
1666
1672
|
| minecraftserver.Vector3,
|
|
1667
1673
|
): boolean;
|
|
@@ -2956,7 +2962,7 @@ export class SelectionContainerVolume extends SelectionContainerBase {
|
|
|
2956
2962
|
*
|
|
2957
2963
|
* {@link Error}
|
|
2958
2964
|
*/
|
|
2959
|
-
getBoundingBox(): minecraftserver.
|
|
2965
|
+
getBoundingBox(): minecraftserver.BlockBoundingBox;
|
|
2960
2966
|
/**
|
|
2961
2967
|
* @remarks
|
|
2962
2968
|
* This function can't be called in read-only mode.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minecraft/server-editor",
|
|
3
|
-
"version": "0.1.0-beta.1.21.80-preview.
|
|
3
|
+
"version": "0.1.0-beta.1.21.80-preview.26",
|
|
4
4
|
"description": "",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@minecraft/common": "^1.0.0",
|
|
17
|
-
"@minecraft/server": "^2.0.0-beta.1.21.80-preview.
|
|
17
|
+
"@minecraft/server": "^2.0.0-beta.1.21.80-preview.26"
|
|
18
18
|
},
|
|
19
19
|
"license": "MIT"
|
|
20
20
|
}
|