mirror of
https://github.com/PfandBoss/SemesterGameJam2022.git
synced 2025-11-12 12:16:14 +01:00
Cannon finished
This commit is contained in:
@@ -22,19 +22,17 @@ func interact(player):
|
||||
if player.getResource() == 0:
|
||||
if currentStashValue < maxStashValue:
|
||||
currentStashValue += 1
|
||||
player.clearInventory()
|
||||
return
|
||||
return
|
||||
if player.getResource() == 1:
|
||||
if currentPowderStashValue < maxPowderStashValue:
|
||||
currentPowderStashValue += 1
|
||||
player.clearInventory()
|
||||
return
|
||||
return
|
||||
|
||||
func shoot():
|
||||
if not CAN_ENGAGE:
|
||||
return false
|
||||
CAN_ENGAGE = false
|
||||
create_tween().tween_callback(func(): CAN_ENGAGE = true).set_delay(2)
|
||||
if currentStashValue >= 1 and currentPowderStashValue >= 1 and currentState == STATE.INACTIVE:
|
||||
currentState = STATE.SHOOTING
|
||||
currentStashValue -= 1
|
||||
|
||||
@@ -36,3 +36,4 @@ func _process(delta):
|
||||
print(train.current_speed)
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -34,9 +34,9 @@ func _set_currentStashValue(newValue):
|
||||
func _get_currentStashValue():
|
||||
return currentStashValue
|
||||
func _set_maxStashValue(newValue):
|
||||
currentStashValue = newValue
|
||||
maxStashValue = newValue
|
||||
func _get_maxStashValue():
|
||||
return currentStashValue
|
||||
return maxStashValue
|
||||
func _set_level(newValue):
|
||||
level = newValue
|
||||
func _get_level():
|
||||
|
||||
@@ -95,6 +95,7 @@ func getResource():
|
||||
|
||||
func clearInventory():
|
||||
inventory = 0
|
||||
print("cleared")
|
||||
walking = "walking"
|
||||
idle = "idle"
|
||||
$AnimatedSprite3D.play(idle)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user