mirror of
https://github.com/PfandBoss/SemesterGameJam2022.git
synced 2025-11-12 12:16:14 +01:00
Blub
This commit is contained in:
19
Cannon.gd
19
Cannon.gd
@@ -2,10 +2,23 @@ extends Module
|
||||
|
||||
class_name Cannon
|
||||
|
||||
|
||||
|
||||
enum STATE {INACTIVE, RELOADING, SHOOTING}
|
||||
#------------Methods-------------#
|
||||
|
||||
func _ready():
|
||||
var root = get_tree().root.get_child(0)
|
||||
root.timeout.connect("shooting",self,"_on_signal_shooting")
|
||||
maxStashValue = 1
|
||||
currentStashValue = 0
|
||||
currentState = STATE.INAKTIVE
|
||||
#TODO: FINISH
|
||||
func interact():
|
||||
if currentState == STATE.INACTIVE:
|
||||
if currentStashValue < maxStashValue:
|
||||
currentState = STATE.RELOADING
|
||||
currentStashValue = maxStashValue
|
||||
return
|
||||
|
||||
return
|
||||
|
||||
func _on_signal_shooting():
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user