diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/hoop.gd | 2 | 
1 files changed, 0 insertions, 2 deletions
| diff --git a/scripts/hoop.gd b/scripts/hoop.gd index 77de7b4..3edd004 100644 --- a/scripts/hoop.gd +++ b/scripts/hoop.gd @@ -5,11 +5,9 @@ signal score  var has_scored = false  func _on_Area2D_body_exited(body): -	print(body)  	if body.name == "Basketball":  	# Prevent scoring multiple points with one basketball throw.  		if !has_scored and !global_variables.timer_zero: -			print("SCORE!!!")  			global_variables.score += 1  			has_scored = true  			emit_signal ("score") | 
