World Config format
The worlds/.../config.json file contains global information about the world such as the time of day, the level generator used, and the seed.
JSON format
- : Root object.
- Version: The world config format used at the time of saving.
- UUID: The worlds UUID stored in binary form encoded in base64.
- $binary: The base64 encoded binary UUID value.
- $type: The BSON binary type. Always
04for UUID.
- DisplayName: The name of this world as shown in-game.
- Seed: The worlds seed.
- SpawnProvider: Information for the world spawn point.
- Id: Currently unknown. Always
Global. - SpawnPoint: The players world spawn point and spawn rotation.
- X: X position of the world spawn point.
- Y: Y position of the world spawn point.
- Z: Z position of the world spawn point.
- Pitch: X rotation of the world spawn rotation.
- Yaw: Y rotation of the world spawn rotation.
- Roll: Z rotation of the world spawn rotation.
- Id: Currently unknown. Always
- WorldGen: Information for the world generator used for this world.
- Type: The id of the world generator to use. Either
Hytale(v1) orHytaleGenerator(v2) - WorldStructure: The type of world/universe to generate. Doesn't exists if
Typeis Hytale. - Name: The type of world/universe to generate. Doesn't exists if
Typeis HytaleGenerator. - Version: Currently unknown. Always
0.0.0. Doesn't exists ifTypeis HytaleGenerator.
- Type: The id of the world generator to use. Either
- WorldMap: Currently unknown.
- Type: Currently unknown. Always
WorldGen.
- Type: Currently unknown. Always
- ChunkStorage: The worlds chunk storage information.
- Type: The worlds chunk storage type. Either
HytaleorRocksDb.
- Type: The worlds chunk storage type. Either
- ChunkConfig: Currently unknown.
- IsTicking:
trueif the world ticks normally. - IsBlockTicking:
trueif blocks can get ticked. i.e: Crops growing. - IsPvpEnabled:
trueif PVP is enabled. - IsFallDamagedEnabled:
trueif fall damage is enabled. - IsGameTimePaused:
trueif the daynight cycle is paused. - GameTime: The current in-game date and time in the format:
<yyyy>-<MM>-<dd>T<HH>:<mm>:<ss>Z. Example0001-01-01T00:00:00Z. - ClientEffects: Information for different client effects.
- SunHeightPercent: Controls how high the sun can get in the sky.
- SunAngleDegrees: Controls the angle of the sun.
- BloomIntensity: Controls the sun bloom effect intensity.
- BloomPower: Controls the sun bloom effect power.
- SunIntensity: Controls the brightness intensity of the sun.
- SunshaftIntensity: Controls the brightness intensity of the sun shafts.
- SunshaftScaleFactor: Controls the scale of the sun shafts.
- RequiredPlugins: Currently unknown.
- GameMode: The default gamemode for this world.
- IsSpawningNPC:
trueif npcs can spawn in naturally. - IsSpawnMarkersEnabled:
trueif the world spawn point has a marker on the world map and compass. - IsAllNPCFrozen:
trueif all npcs have their AI paused. - GameplayConfig: Currently unknown. Always
Default. - Death: Information for what happens when a player dies.
- RespawnController: Controls where the player should respawn.
- Type: The id of the respawn location type. Known types:
HomeOrSpawnPoint.
- Type: The id of the respawn location type. Known types:
- ItemsLossMode: The inventory penalty on death mode. One of
None= None,All= Drop All, orConfigured= Partial Drop. - ItemsAmountLossPercentage: The percentage of the players resources loss on death. Only applies if
ItemsLossModeis Configured. - ItemsDurabilityLossPercentage: The percentage of item durability loss on death. Only applies if
ItemsLossModeis Configured.
- RespawnController: Controls where the player should respawn.
- DaytimeDurationSeconds: How long in seconds the day lasts. Doesn't exists if
IsGameTimePausedis true. - NighttimeDurationSeconds: How long in seconds the night lasts. Doesn't exists if
IsGameTimePausedis true. - IsCompassUpdating:
trueif the player's compass update. - IsSavingPlayers:
trueif changes to player data saves to disk. - IsSavingChunks:
trueif changes to chunks are saved to disk. - SaveNewChunks:
trueif newly generated chunks are saved to disk. - IsUnloadingChunks:
trueif chunks can be unloaded. - IsObjectiveMarkersEnabled: Currently unknown.
- DeleteOnUniverseStart:
trueif this world should be deleted and regenerated when started. - DeleteOnRemove: Currently unknown.
- ResourceStorage: Currently unknown.
- Type: Currently unknown. Always
Hytale.
- Type: Currently unknown. Always
- Plugin: Information related to plugins, custom and built-in.
- CreativeHub: Contains information related to the Creative mode hub.
- StartupInstance: The initial instance used for the Creative mode hub. Always
CreativeHub.
- StartupInstance: The initial instance used for the Creative mode hub. Always
- CreativeHub: Contains information related to the Creative mode hub.
History
Early Access |
|||||||
|---|---|---|---|---|---|---|---|
| 2026.01.13-dcad8778f | The world config format is introduced. | ||||||