@wayward/types 2.11.4-beta.dev.20220220.1 → 2.11.4-beta.dev.20220222.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.
|
@@ -87,11 +87,6 @@ export default class Island extends EventEmitter.Host<IIslandEvents> implements
|
|
|
87
87
|
loadCount: number;
|
|
88
88
|
seeds: ISeeds;
|
|
89
89
|
readonly seededRandom: Random<SeededGenerator>;
|
|
90
|
-
/**
|
|
91
|
-
* Random for milestone modifiers. You should only use the one in the default island
|
|
92
|
-
* todo: remove since this is no longer used
|
|
93
|
-
*/
|
|
94
|
-
readonly seededMilestoneModifiersRandom: Random<SeededGenerator>;
|
|
95
90
|
/**
|
|
96
91
|
* Set of players on this island
|
|
97
92
|
*/
|
|
@@ -110,6 +110,7 @@ export declare const defaultSshServerPort = 38742;
|
|
|
110
110
|
export declare const defaultSshServerUsername = "wayward";
|
|
111
111
|
export declare const steamLobbyPrefix = "steam:";
|
|
112
112
|
export declare const checkConnectionMatchmakingId = "check";
|
|
113
|
+
export declare const syncCheckWaitingResetTime = 5000;
|
|
113
114
|
export declare const defaultSyncChecks: MultiplayerSyncCheck[];
|
|
114
115
|
export declare const networkingOptions: IMultiplayerNetworkingOptions;
|
|
115
116
|
export declare function getDefaultMultiplayerOptions(): IMultiplayerOptions;
|
|
@@ -167,7 +167,7 @@ export default class WorldRenderer extends EventEmitter.Host<IWorldRendererEvent
|
|
|
167
167
|
getPixelSize(): number;
|
|
168
168
|
getZoom(): number;
|
|
169
169
|
getTileScale(): number;
|
|
170
|
-
setTileScale
|
|
170
|
+
private setTileScale;
|
|
171
171
|
setZoom(zoom: number): void;
|
|
172
172
|
setViewport(view: Vector2): void;
|
|
173
173
|
getViewport(): Vector2;
|
package/package.json
CHANGED