/tg/ Station 13 - Modules - TypesVar Details - Proc Details

elevation_core

The core element attached to the turf itself. Do not use this directly!

Causes mobs walking over a turf with this element to be pixel shifted vertically by the pixel_shift amount. Because of the way it's structured, it should only be added through the elevation element (without the core suffix).

To explain: in the case of multiple objects with (different instances of) the element being stacked on one turf somehow, we only want that with the highest pixel shift value to apply it to the turf, so that the mobs standing on top of it all doesn't look like it's floating off the pile.

Vars

pixel_shiftThe amount of pixel_z applied to the mob standing on the turf.

Procs

deelevate_mobReverts elevation of the mob.
elevate_mobElevates the mob by pixel_shift amount.
on_set_buckledIf the mob is buckled or unbuckled to/from a vehicle, shift it up/down . Null the pixel shift if the mob is buckled to something different that's not a mob or vehicle
register_new_mobRegisters a new mob to be elevated, and elevates it.

Var Details

pixel_shift

The amount of pixel_z applied to the mob standing on the turf.

Proc Details

deelevate_mob

Reverts elevation of the mob.

elevate_mob

Elevates the mob by pixel_shift amount.

If the mob has the TRAIT_IGNORE_ELEVATION trait, it will not be elevated.

If the mob is buckled to something... ...And that something is a vehicle, it will also be elevated. ...And that something is an object, neither the mob nor the object will be elevated. ...And that something is a mob, we will be elevated (but not the other mob).

on_set_buckled

If the mob is buckled or unbuckled to/from a vehicle, shift it up/down . Null the pixel shift if the mob is buckled to something different that's not a mob or vehicle

The reason is that it's more important for a mob to look like they're actually buckled to a bed or something anchored to the floor than atop of whatever else is on the same turf.

register_new_mob

Registers a new mob to be elevated, and elevates it.