1
0
This commit is contained in:
FoxSpellCaster
2025-01-09 21:10:50 -05:00
parent 925fbba477
commit 8d7c9eafd4
4 changed files with 29 additions and 4 deletions

10
BaloonPopper/balloon.gd Normal file
View File

@@ -0,0 +1,10 @@
extends Area3D
var clicks_to_pop : int = 3
var size_increase : float = 0.2
var score_to_give : int = 1
# If mouse is left click when pressed
func _on_input_event(camera, event, event_position, normal, shape_idx):
if event is InputEventMouseButton and event.button_index == MOUSE_BUTTON_LEFT and event.pressed :
print ("Increase Balloon Size")