Handler Objects
note
Handler objects are special objects on the map with specific names that are processed by the game to provide additional functionalities. Always use the exact names (in lowercase) and include the necessary components for proper operation.
Available Handler Objects
Object Name | Description | Components | Max. Quantity | Necessity |
---|---|---|---|---|
spawn_point | An empty object that defines the player's spawn coordinates. | Transform | 1 | Required |
respawn_collider | An invisible object with a Collider (with IsTrigger enabled). When the player enters the trigger, a respawn occurs. | Transform, Collider | Unlimited | Recommended |
static_parent | An empty object that contains all immovable objects on the map to optimize game performance. | Transform | 1 | Recommended |
respawn_point | An empty object that defines the player's respawn coordinates. If there are multiple points, the closest one is chosen. | Transform | Unlimited | Optional |
ground_grass_effect | A 3D object with a grass surface that affects the car's behavior. | Transform, Collider | Unlimited | Optional |
ground_sand_effect | A 3D object with a sand surface that affects the car's behavior. | Transform, Collider | Unlimited | Optional |
ground_ice_effect | A 3D object with an ice surface that affects the car's behavior. | Transform, Collider | Unlimited | Optional |
ground_snow_effect | A 3D object with a snow surface that affects the car's behavior. | Transform, Collider | Unlimited | Optional |
ground_snowroad_effect | A 3D object with a snowy road surface that affects the car's behavior. | Transform, Collider | Unlimited | Optional |
customFarCamera_500 | An empty object that allows you to change the camera's draw distance. The number 500 can be replaced with any other value. | Transform | 1 | Optional |
setGravity_-9.81 | An empty object that modifies gravity. The numerical value -9.81 can be replaced with any other floating-point number. | Transform | 1 | Optional |
effect_snow_soft | An empty object that adds a falling snow effect to the map. | Transform | 1 | Optional |
caution
Be cautious when using handler objects — incorrect configuration may cause game crashes. Adhere to the recommended quantity and add only the necessary components.