who the fuck knows

This commit is contained in:
Dan 2024-05-08 17:06:15 +01:00
parent 1c33ea2f59
commit 1da411cacd
31 changed files with 1372 additions and 78 deletions

View file

@ -1,12 +1,15 @@
extends State
class_name BeeSleeping
@onready var bee = get_parent().get_parent() as Bee # I think this is bad but I dont care it works
@onready var bee : Bee = get_parent().get_parent() as Bee # I think this is bad but I dont care it works
var time_at_patch : float = 0.0
func enter(_msg := {}):
func enter(_msg := {}) -> void:
pass
func update(_delta):
func update(_delta) -> void:
pass
func physics_update(_delta : float) -> void:
pass