This commit is contained in:
2026-01-21 23:40:20 +01:00
commit d1f8068081
478 changed files with 24902 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
extends Object
class_name GridCell
var position: Vector3i
var spaceTaken: bool = false
var biomeConnection: bool = false
var door: bool = false
var doorOrientation: int
enum doorOrientations {north,east,south,west}
var biome: String
func duplicate() -> GridCell:
var returnData := GridCell.new()
returnData.spaceTaken = spaceTaken
returnData.door = door
returnData.doorOrientation = doorOrientation
returnData.biome = biome
returnData.biomeConnection = biomeConnection
return returnData