JanuaryGodotGame/januaryproject/scripts/scene_manager.gd

24 lines
584 B
GDScript3
Raw Normal View History

2025-01-14 01:58:50 +00:00
extends Node
@onready var game: Node2D = $".."
var bullet = preload("res://scenes/bullet.tscn")
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass
func bulletFactory():
print("Factory will make a bullet")
var myBullet = bullet.instantiate()
myBullet.connect("hit", onBulletHit)
return myBullet
func onBulletHit(body):
print("Scene manager knows bullet hit")
game.bulletHit(body)