GridSpecific

Overview

Return Value
Function

GetCrawlSpaces(CrawlSpaceVariant? crawlSpaceVariant = -1. which matches all variants.)

GetSpikes(integer? spikesVariant)

GetTeleporters(integer? teleporterVariant)

GetTNTs(integer? TNTVariant)

SpawnDoor(DoorVariant doorVariant, `integer

SpawnPit(PitVariant pitVariant, `integer

SpawnRock(RockVariant rockVariant, `integer

SpawnSpikes(integer spikeVariant, `integer

SpawnTNT(integer TNTVariant, `integer

Functions

GetCrawlSpaces()

GridEntity[] GetCrawlSpaces(CrawlSpaceVariant? crawlSpaceVariant = -1. which matches all variants.)

Helper function to get all grid entities with type GridEntityType.GRID_STAIRS and the given variant.

GetPits()

GridEntityPit[] GetPits(PitVariant? pitVariant)

Helper function to get all grid entities with type GridEntityType.GRID_PIT and the given variant.

GetPoops()

GridEntityPoop[] GetPoops(PoopGridEntityVariant? poopVariant)

Helper function to get all grid entities with type GridEntityType.GRID_POOP and the given variant.

GetPressurePlates()

GridEntityPressurePlate[] GetPressurePlates(PressurePlateVariant? pressurePlateVariant)

Helper function to get all grid entities with type GridEntityType.GRID_PRESSURE_PLATE and the given variant.

GetRocks()

GridEntityRock[] GetRocks(RockVariant? rockVariant)

Helper function to get all grid entities with type GridEntityType.GRID_ROCK and the given variant.

GetSpikes()

GridEntitySpikes[] GetSpikes(integer? spikesVariant)

Helper function to get all grid entities with type GridEntityType.GRID_SPIKES and the given variant.

GetTeleporters()

GridEntity[] GetTeleporters(integer? teleporterVariant)

Helper function to get all grid entities with type GridEntityType.GRID_TELEPORTER and the given variant.

GetTNTs()

GridEntityTNT[] GetTNTs(integer? TNTVariant)

Helper function to get all grid entities with type GridEntityType.GRID_TNT and the given variant.

GetTrapdoors()

GridEntity[] GetTrapdoors(TrapdoorVariant? trapdoorVariant)

Helper function to get all grid entities with type GridEntityType.GRID_TRAPDOOR and the given variant.

SpawnDoor()

GridEntityDoor? SpawnDoor(DoorVariantdoorVariant, integer |Vector indexOrPosition, boolean? force)

Helper function to spawn a door.

SpawnPit()

GridEntityPit? SpawnPit(PitVariantpitVariant, integer |Vector indexOrPosition, boolean? force)

Helper function to spawn a pit.

SpawnPoop()

GridEntityPoop? SpawnPoop(PoopGridEntityVariantpoopVariant, integer |Vector indexOrPosition, boolean? force)

Helper function to spawn a poop.

SpawnPressurePlate()

GridEntityPressurePlate? SpawnPressurePlate(PressurePlateVariantpressurePlateVariant, integer |Vector indexOrPosition, boolean? force)

Helper function to spawn a pressure plate.

SpawnRock()

GridEntityRock? SpawnRock(RockVariantrockVariant, integer |Vector indexOrPosition, boolean? force)

Helper function to spawn a rock.

SpawnSpikes()

GridEntitySpikes? SpawnSpikes(integer spikeVariant, integer | Vector indexOrPosition, boolean? force)

Helper function to spawn a spike.

SpawnTNT()

GridEntityTNT? SpawnTNT(integer TNTVariant, integer | Vector indexOrPosition, boolean? force)

Helper function to spawn TNT.

Last updated