FebruaryGame/februarygodotgame/scripts/scene_manager.gd

31 lines
753 B
GDScript3
Raw Normal View History

2025-03-04 01:40:27 +00:00
extends Node
var bulletsFiredTotal = 0
var bulletsMadeTotal = 0
var bulletArray = []
var bullet = preload("res://scenes/bullet.tscn")
#bullet factory - makes bullets
func bulletFactory():
var mybullet
if bulletArray.size() < 7:
print("new bullet on the factory")
mybullet = bullet.instantiate()
mybullet.connect("hit", bulletHit)
else:
print("recycle bullet")
mybullet = bulletArray.pop_back()
bulletArray.push_front(mybullet)
return mybullet
#order desk for bullets
func makeBullet(position,speed):
print("make a bullet")
var newBullet = bulletFactory()
owner.add_child(newBullet)
newBullet.setSpeed(speed)
newBullet.transform = position
func bulletHit(bullet, body):
print("Tell the game controller a bullet hit something")