Refactored to use Vector4i. Added Spider/Grasshopper. TODO: Ant

This commit is contained in:
Sch1nken 2024-03-14 19:30:18 +01:00
parent ff4aa93845
commit 11f8a71f52
19 changed files with 482 additions and 326 deletions

15
PlayerInventory.gd Normal file
View file

@ -0,0 +1,15 @@
extends HBoxContainer
var available_insects: Array[TileResource] = []
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
# create all neccessary buttons for the inventory
# when an insect gets placed, we can check it here and
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass