From aac091d2cc31129eedfee536ef5bb040193fb99e Mon Sep 17 00:00:00 2001 From: OddlyTimbot Date: Mon, 13 Jan 2025 17:29:43 -0500 Subject: [PATCH] charactercontroller update --- januaryproject/scripts/charactercontroller.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/januaryproject/scripts/charactercontroller.gd b/januaryproject/scripts/charactercontroller.gd index bbc11af..c45b85c 100644 --- a/januaryproject/scripts/charactercontroller.gd +++ b/januaryproject/scripts/charactercontroller.gd @@ -36,7 +36,7 @@ func _physics_process(delta: float) -> void: pushLeftEnabled = false # Handle Shoot if Input.is_action_just_pressed("shoot"): - print("shooting") + #refactor this to get bullet from SceneManager (bullet pool) var newBullet = bullet.instantiate() owner.add_child(newBullet) newBullet.transform = right_target.global_transform