@minecraft/server-editor 0.1.0-beta.1.21.40-preview.20 → 0.1.0-beta.1.21.40-preview.21
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 +30 -0
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -227,6 +227,7 @@ export enum GamePublishSetting {
|
|
|
227
227
|
* properties.
|
|
228
228
|
*/
|
|
229
229
|
export enum GraphicsSettingsProperty {
|
|
230
|
+
ShowChunkBoundaries = 'ShowChunkBoundaries',
|
|
230
231
|
/**
|
|
231
232
|
* @remarks
|
|
232
233
|
* Manages rendering of invisible blocks (e.g., barrier, light,
|
|
@@ -1058,6 +1059,7 @@ export enum WidgetGroupSelectionMode {
|
|
|
1058
1059
|
*/
|
|
1059
1060
|
export type GraphicsSettingsPropertyTypeMap = {
|
|
1060
1061
|
[GraphicsSettingsProperty.ShowInvisibleBlocks]?: boolean;
|
|
1062
|
+
[GraphicsSettingsProperty.ShowChunkBoundaries]?: boolean;
|
|
1061
1063
|
};
|
|
1062
1064
|
|
|
1063
1065
|
/**
|
|
@@ -1557,12 +1559,16 @@ export class ClipboardChangeAfterEventSignal {
|
|
|
1557
1559
|
* @remarks
|
|
1558
1560
|
* This function can't be called in read-only mode.
|
|
1559
1561
|
*
|
|
1562
|
+
* This function can be called in early-execution mode.
|
|
1563
|
+
*
|
|
1560
1564
|
*/
|
|
1561
1565
|
subscribe(callback: (arg: ClipboardChangeAfterEvent) => void): (arg: ClipboardChangeAfterEvent) => void;
|
|
1562
1566
|
/**
|
|
1563
1567
|
* @remarks
|
|
1564
1568
|
* This function can't be called in read-only mode.
|
|
1565
1569
|
*
|
|
1570
|
+
* This function can be called in early-execution mode.
|
|
1571
|
+
*
|
|
1566
1572
|
*/
|
|
1567
1573
|
unsubscribe(callback: (arg: ClipboardChangeAfterEvent) => void): void;
|
|
1568
1574
|
}
|
|
@@ -1755,12 +1761,16 @@ export class CurrentThemeChangeAfterEventSignal {
|
|
|
1755
1761
|
* @remarks
|
|
1756
1762
|
* This function can't be called in read-only mode.
|
|
1757
1763
|
*
|
|
1764
|
+
* This function can be called in early-execution mode.
|
|
1765
|
+
*
|
|
1758
1766
|
*/
|
|
1759
1767
|
subscribe(callback: (arg: CurrentThemeChangeAfterEvent) => void): (arg: CurrentThemeChangeAfterEvent) => void;
|
|
1760
1768
|
/**
|
|
1761
1769
|
* @remarks
|
|
1762
1770
|
* This function can't be called in read-only mode.
|
|
1763
1771
|
*
|
|
1772
|
+
* This function can be called in early-execution mode.
|
|
1773
|
+
*
|
|
1764
1774
|
*/
|
|
1765
1775
|
unsubscribe(callback: (arg: CurrentThemeChangeAfterEvent) => void): void;
|
|
1766
1776
|
}
|
|
@@ -1777,6 +1787,8 @@ export class CurrentThemeColorChangeAfterEventSignal {
|
|
|
1777
1787
|
* @remarks
|
|
1778
1788
|
* This function can't be called in read-only mode.
|
|
1779
1789
|
*
|
|
1790
|
+
* This function can be called in early-execution mode.
|
|
1791
|
+
*
|
|
1780
1792
|
*/
|
|
1781
1793
|
subscribe(
|
|
1782
1794
|
callback: (arg: CurrentThemeColorChangeAfterEvent) => void,
|
|
@@ -1785,6 +1797,8 @@ export class CurrentThemeColorChangeAfterEventSignal {
|
|
|
1785
1797
|
* @remarks
|
|
1786
1798
|
* This function can't be called in read-only mode.
|
|
1787
1799
|
*
|
|
1800
|
+
* This function can be called in early-execution mode.
|
|
1801
|
+
*
|
|
1788
1802
|
*/
|
|
1789
1803
|
unsubscribe(callback: (arg: CurrentThemeColorChangeAfterEvent) => void): void;
|
|
1790
1804
|
}
|
|
@@ -1951,6 +1965,8 @@ export class CursorAttachmentPropertyChangeAfterEventSignal {
|
|
|
1951
1965
|
* @remarks
|
|
1952
1966
|
* This function can't be called in read-only mode.
|
|
1953
1967
|
*
|
|
1968
|
+
* This function can be called in early-execution mode.
|
|
1969
|
+
*
|
|
1954
1970
|
*/
|
|
1955
1971
|
subscribe(
|
|
1956
1972
|
callback: (arg: CursorAttachmentPropertiesChangeAfterEvent) => void,
|
|
@@ -1959,6 +1975,8 @@ export class CursorAttachmentPropertyChangeAfterEventSignal {
|
|
|
1959
1975
|
* @remarks
|
|
1960
1976
|
* This function can't be called in read-only mode.
|
|
1961
1977
|
*
|
|
1978
|
+
* This function can be called in early-execution mode.
|
|
1979
|
+
*
|
|
1962
1980
|
*/
|
|
1963
1981
|
unsubscribe(callback: (arg: CursorAttachmentPropertiesChangeAfterEvent) => void): void;
|
|
1964
1982
|
}
|
|
@@ -1974,6 +1992,8 @@ export class CursorPropertyChangeAfterEventSignal {
|
|
|
1974
1992
|
* @remarks
|
|
1975
1993
|
* This function can't be called in read-only mode.
|
|
1976
1994
|
*
|
|
1995
|
+
* This function can be called in early-execution mode.
|
|
1996
|
+
*
|
|
1977
1997
|
*/
|
|
1978
1998
|
subscribe(
|
|
1979
1999
|
callback: (arg: CursorPropertiesChangeAfterEvent) => void,
|
|
@@ -1982,6 +2002,8 @@ export class CursorPropertyChangeAfterEventSignal {
|
|
|
1982
2002
|
* @remarks
|
|
1983
2003
|
* This function can't be called in read-only mode.
|
|
1984
2004
|
*
|
|
2005
|
+
* This function can be called in early-execution mode.
|
|
2006
|
+
*
|
|
1985
2007
|
*/
|
|
1986
2008
|
unsubscribe(callback: (arg: CursorPropertiesChangeAfterEvent) => void): void;
|
|
1987
2009
|
}
|
|
@@ -2418,6 +2440,8 @@ export class ModeChangeAfterEventSignal {
|
|
|
2418
2440
|
*
|
|
2419
2441
|
* This function can't be called in read-only mode.
|
|
2420
2442
|
*
|
|
2443
|
+
* This function can be called in early-execution mode.
|
|
2444
|
+
*
|
|
2421
2445
|
*/
|
|
2422
2446
|
subscribe(callback: (arg: ModeChangeAfterEvent) => void): (arg: ModeChangeAfterEvent) => void;
|
|
2423
2447
|
/**
|
|
@@ -2427,6 +2451,8 @@ export class ModeChangeAfterEventSignal {
|
|
|
2427
2451
|
*
|
|
2428
2452
|
* This function can't be called in read-only mode.
|
|
2429
2453
|
*
|
|
2454
|
+
* This function can be called in early-execution mode.
|
|
2455
|
+
*
|
|
2430
2456
|
*/
|
|
2431
2457
|
unsubscribe(callback: (arg: ModeChangeAfterEvent) => void): void;
|
|
2432
2458
|
}
|
|
@@ -2496,12 +2522,16 @@ export class PrimarySelectionChangeAfterEventSignal {
|
|
|
2496
2522
|
* @remarks
|
|
2497
2523
|
* This function can't be called in read-only mode.
|
|
2498
2524
|
*
|
|
2525
|
+
* This function can be called in early-execution mode.
|
|
2526
|
+
*
|
|
2499
2527
|
*/
|
|
2500
2528
|
subscribe(callback: (arg: SelectionEventAfterEvent) => void): (arg: SelectionEventAfterEvent) => void;
|
|
2501
2529
|
/**
|
|
2502
2530
|
* @remarks
|
|
2503
2531
|
* This function can't be called in read-only mode.
|
|
2504
2532
|
*
|
|
2533
|
+
* This function can be called in early-execution mode.
|
|
2534
|
+
*
|
|
2505
2535
|
*/
|
|
2506
2536
|
unsubscribe(callback: (arg: SelectionEventAfterEvent) => void): void;
|
|
2507
2537
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minecraft/server-editor",
|
|
3
|
-
"version": "0.1.0-beta.1.21.40-preview.
|
|
3
|
+
"version": "0.1.0-beta.1.21.40-preview.21",
|
|
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": "^1.16.0-beta.1.21.40-preview.
|
|
17
|
+
"@minecraft/server": "^1.16.0-beta.1.21.40-preview.21"
|
|
18
18
|
},
|
|
19
19
|
"license": "MIT"
|
|
20
20
|
}
|