creatura/settingtypes.txt

23 lines
1 KiB
Text
Raw Normal View History

2022-02-10 16:32:53 -08:00
# How mobs step up nodes.
#
# - Simple means mobs use Minetests builtin stepping.
# - Fancy means mobs will step up nodes with a quick hop but can cause lag.
creatura_step_type (Step Type) enum simple simple,fancy
# How often (in seconds) the spawn ABM is called
2022-08-22 18:34:07 -07:00
creatura_spawn_interval (Spawn ABM Interval) int 10
2022-02-10 16:32:53 -08:00
# Time (in seconds) between spawn steps
2022-08-22 18:34:07 -07:00
creatura_spawn_step (Spawn Step Interval) int 15
# Allows Mobs to spawn during chunk generation (If dependent mods use spawn_on_gen)
creatura_mapgen_spawning (Mapgen Spawning) bool true
# How many chunks are generated before a Mob can spawn
creatura_mapgen_spawn_interval (Mapgen Spawning Interval) int 5
2022-02-10 16:32:53 -08:00
# Allotted time (in μs) per step for A* pathfinding (lower means less lag but slower pathfinding)
2022-08-22 18:34:07 -07:00
creatura_a_star_alloted_time (A* Pathfinding Alloted time per step) int 500
2022-02-10 16:32:53 -08:00
# Allotted time (in μs) per step for Theta* pathfinding (lower means less lag but slower pathfinding)
2022-08-22 18:34:07 -07:00
creatura_theta_star_alloted_time (Theta* Pathfinding Alloted time per step) int 700