— — — — —
— — — — —
— — — — —
— — — — —
— — — — —
— — — — —
— — — — —
— — — — —
A zone is a box-shaped area/region within a map, defined by a position (using the tile coordinate system) and a size (measured in voxels). Zones can be either passable or impassable. Passable zones allow characters and objects to pass through them freely, with an option to trigger a script whenever a character or object enters or exits the zone. Impassable zones, only applicable to free movement, act as obstacles and prevent characters and objects from passing through them or entering that area, with an option to trigger a script whenever one collides with the zone.
Zones are created and modified from the Map Properties tab in the Map Editor. When assigning scripts to zones, the built-in initiator variable will contain the character or object that triggered the event.
The First-Person Magic Shooter project template includes some uses of zones. The passable zone inside the room behind the locked door (the green area in the image below) triggers the end of the game when the player enters the zone. The impassable zone above that room's walls (the red area in the image below) prevents the player from jumping over the walls to bypass the locked door.
The colored boxes for zones in the Map Editor can be hidden using the Display Zones button on the Map Editor toolbar. They can also be hidden along with other visual indicators by holding the Backtick (`) key, or Shift + Backtick (`) key to toggle all of them off.
From a scripting perspective, there are several new Bauxite functions related to the management of zones. Below is a list of these new functions that are available to use:
add_zone("toxic_zone", true, coord[0, 0, 0], 64, 64, 16); set_zone_script("toxic_zone", "apply_poison_status", CHARACTER_ENTER); set_zone_script("toxic_zone", "remove_poison_status", CHARACTER_EXIT);