@wayward/types 2.14.4-beta.dev.20250426.1 → 2.14.4-beta.dev.20250428.1
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.
@@ -102,32 +102,33 @@ export declare enum RenderSource {
|
|
102
102
|
NotifierAddNotifierIcon = 37,
|
103
103
|
NotifierAddStat = 38,
|
104
104
|
NotifierAddStatusType = 39,
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
105
|
+
NotifierKeepMarker = 40,
|
106
|
+
NotifierRemoveMarker = 41,
|
107
|
+
NotifierRemoveNotification = 42,
|
108
|
+
OptionEquipment = 43,
|
109
|
+
OptionVisionMode = 44,
|
110
|
+
OptionZoomLevel = 45,
|
111
|
+
Particles = 46,
|
112
|
+
PlayerAdd = 47,
|
113
|
+
PlayerKill = 48,
|
114
|
+
PlayerNoclip = 49,
|
115
|
+
PlayerProcessMovement = 50,
|
116
|
+
PlayerReady = 51,
|
117
|
+
PlayerRemove = 52,
|
118
|
+
PlayerRespawn = 53,
|
119
|
+
PlayerWalkToTilePath = 54,
|
120
|
+
PlayerWalkToTilePathOverburdened = 55,
|
121
|
+
PlayerWalkToTilePathPreview = 56,
|
122
|
+
PlayerWalkToTilePathReset = 57,
|
123
|
+
RendererReinitialize = 58,
|
124
|
+
Resize = 59,
|
125
|
+
Sacrifice = 60,
|
126
|
+
SetupGl = 61,
|
127
|
+
SpawnAnimationStart = 62,
|
128
|
+
StartGame = 63,
|
129
|
+
Steamworks = 64,
|
130
|
+
Thumbnail = 65,
|
131
|
+
WorldLayerRendererFlush = 66
|
131
132
|
}
|
132
133
|
export declare function calculateAmbientLightLevel(origin: IFieldOfViewOrigin, z: number): number;
|
133
134
|
export declare const ZOOM_LEVEL_MIN = 1;
|
@@ -15,6 +15,7 @@ import type { IVector2 } from "@wayward/game/utilities/math/IVector";
|
|
15
15
|
import type { IVector4 } from "@wayward/game/utilities/math/Vector4";
|
16
16
|
import type { IRGB } from "@wayward/utilities/Color";
|
17
17
|
export interface INotificationLocation extends IVector4 {
|
18
|
+
readonly isValid?: boolean;
|
18
19
|
getMovementPoint?(timeStamp: number): IVector2;
|
19
20
|
getMovementProgress?(timeStamp: number): number;
|
20
21
|
queueSoundEffect?(soundEffect: SfxType): void;
|
package/package.json
CHANGED