6.7 KiB
6.7 KiB
Modding changes
This document briefly documents what have been added (or removed) regarding modding capabilities
JSON additions
Worldgen
- Where applicable, Perlin noise now can have custom seed specified
- Change above allows to explicitly specify universe seed (as
celestial.config:systemTypePerlin:seed
)
- Change above allows to explicitly specify universe seed (as
- Perlin noise now can be of arbitrary scale (defaults to
512
, specified withscale
key, integer type, 2048>=x>=16)
Terrain
mix
terrain selector gotmixSeedBias
,aSeedBias
andbSeedBias
fields, whose deviate respective selectors seeds (default to0
)displacement
terrain selector hasseedBias
added, which deviate seed ofsource
selector (default to0
)displacement
terrain selector hasxClamp
added, works likeyClamp
rotate
terrain selector hasrotationWidth
(defaults to0.5
) androtationHeight
(defaults to0.0
) added, which are multiplied by world's size and world's height respectively to determine rotation point centermin
terrain selector added, opposite of existingmax
(json format is the same asmax
)cache
terrain selector removed due it not being documented, and having little practical valueperlin
terrain selector now acceptstype
,frequency
andamplitude
values (naming inconsistency fix)ridgeblocks
terrain selector now acceptsamplitude
andfrequency
values (naming inconsistency fix);ridgeblocks
hasoctaves
added (defaults to2
),perlinOctaves
(defaults to1
)
Biomes
- Tree biome placeables now have
variantsRange
(defaults to[1, 1]
) andsubVariantsRange
(defaults to[2, 2]
)variantsRange
is responsible for "stem-foliage" combinationssubVariantsRange
is responsible for "stem-foliage" hue shift combinations- Rolled per each "stem-foliage" combination
- Also two more properties were added:
sameStemHueShift
(defaults totrue
) andsameFoliageHueShift
(defaults tofalse
), which fixate hue shifts within same "stem-foliage" combination
- Original engine always generates two tree types when processing placeable items, new engine however, allows to generate any number of trees.
Dungeons
- All brushes are now deterministic, and will produce exact results given same seed (this fixes dungeons being generated differently on each machine despite players visiting exactly same coordinates in universe)
front
andback
brushes now can properly accept detailed data as json object on second position (e.g.["front", { "material": ... }]
), with following structure (previously, due to oversight in code, it was impossible to specify this structure through any means, because brush definition itself can't be an object):
val material: Registry.Ref<TileDefinition> = BuiltinMetaMaterials.EMPTY.ref
val modifier: Registry.Ref<TileModifierDefinition> = BuiltinMetaMaterials.EMPTY_MOD.ref
val hueShift: Float = 0f
val modHueShift: Float = 0f
val color: TileColor = TileColor.DEFAULT
item
brush now can accept proper item descriptors (in json object tag),- Previous behavior remains unchanged (if specified as string, creates randomized item, if as object, creates exactly what have been specified)
- To stop randomizing as Tiled tileset brush, specify
"dont_randomize"
as anything (e.g. as""
)
liquid
brush now can accept 'level' as second argument- Previous behavior is unchanged,
["liquid", "water", true]
will result into infinite water as before, but["liquid", "water", 0.5, false]
will spawn half-filled water - In tiled, you already can do this using
"quantity"
property
- Previous behavior is unchanged,
dungeonid
brush has been hooked up to legacy dungeons and now can be directly specified inside"brush"
(previously they were only accessible when using Tiled' tilesets).- By default, they mark entire part of dungeon with their ID. To mark specific tile inside dungeon with its own Dungeon ID, supply
true
as third value to brush (e.g["dungeonid", 40000, true"]
) - Tiled map behavior is unchanged, and marks their position only.
- By default, they mark entire part of dungeon with their ID. To mark specific tile inside dungeon with its own Dungeon ID, supply
player.config
- Inventory bags are no longer limited to 255 slots
- However, when joining original servers with mod which increase bag size past 255 slots will result in undefined behavior (joining servers with inventory size bag mods will already result in nearly instant desync though, so you may not ever live to see the side effects; and if original server installs said mod, original clients and original server will experience severe desyncs/undefined behavior too)
Prototypes
damageTable
can be defined directly, without referencing other JSON file (experimental feature)
Items
inventoryIcon
additions if specified as array:scale
, either as float or as vector (for x and y scales); both in prototype file and inparameters
.color
(defaults to white[255, 255, 255, 255]
)rotation
(in degrees, defaults to0
)mirrored
(defaults tofalse
, this is different from setting scale to-1f
since it obeys center point)centered
(defaults totrue
)fullbright
(defaults tofalse
)
.matierial
- Implemented
isConnectable
, which was planned by original developers, but scrapped in process (defaults totrue
, by default only next meta-materials have it set to false:empty
,null
andboundary
)- Used by object and plant anchoring code to determine valid placement
- Used by world tile rendering code (render piece rule
Connects
) - And finally, used by
canPlaceMaterial
to determine whenever player can place blocks next to it (at least one such tile should be present for player to be able to place blocks next to it)
Scripting
Random
- Added
random:randn(deviation: double, mean: double): double
, returns normally distributed double, wheredeviation
stands for Standard deviation, andmean
specifies middle point - Removed
random:addEntropy
animator
- Added
animator.targetRotationAngle(rotationGroup: string): double
- Added
animator.hasRotationGroup(rotationGroup: string): boolean
- Added
animator.rotationGroups(): List<string>
(returns valid names forrotateGroup
,currentRotationAngle
andtargetRotationAngle
) - Added
animator.transformationGroups(): List<string>
- Added
animator.particleEmitters(): List<string>
- Added
animator.hasParticleEmitter(emitter: string): boolean
- Added
animator.lights(): List<string>
- Added
animator.hasLight(light: string): boolean
- Added
animator.sounds(): List<string>
- Added
animator.effects(): List<string>
- Added
animator.hasEffect(effect: string): boolean
- Added
animator.parts(): List<string>