Refactored to use Vector4i. Added Spider/Grasshopper. TODO: Ant
This commit is contained in:
parent
ff4aa93845
commit
11f8a71f52
19 changed files with 482 additions and 326 deletions
15
PlayerInventory.gd
Normal file
15
PlayerInventory.gd
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue