10 lines
233 B
Plaintext
10 lines
233 B
Plaintext
|
|
extends DoorPosition
|
||
|
|
class_name BiomeExit
|
||
|
|
|
||
|
|
var biome: String
|
||
|
|
|
||
|
|
func _init(position: Vector2i = Vector2i(0,0),DoorOrientation : int = 0,biomeName: String = "") -> void:
|
||
|
|
pos = position
|
||
|
|
orientation = DoorOrientation
|
||
|
|
biome = biomeName
|