diff --git a/graphics_assets/packs/legacy_forest/Tiles.png b/graphics_assets/packs/legacy_forest/Tiles.png new file mode 100644 index 0000000..4edb76e Binary files /dev/null and b/graphics_assets/packs/legacy_forest/Tiles.png differ diff --git a/week2/updated_files/scripts/SceneManager.gd b/week2/updated_files/scripts/SceneManager.gd index 84c3a27..5f51160 100644 --- a/week2/updated_files/scripts/SceneManager.gd +++ b/week2/updated_files/scripts/SceneManager.gd @@ -6,6 +6,8 @@ var bulletArray:Array = [] var bullet = preload("res://scenes/bullet.tscn") +#factory decides to issue new bullet, or +#recycle an old one func bulletFactory(): var mybullet @@ -20,8 +22,16 @@ func bulletFactory(): bulletsMadeTotal +=1 return mybullet +#order desk for new bullets +func makeBullet(position, speed): + var myBullet = bulletFactory() + myBullet.transform = position + myBullet.setSpeed(speed) + return myBullet func onBulletHit(bullet, body): #deactivate bullet #put back in queue bullet.setSpeed(1) + #tell the GameController the bullet hit something + #GameController.bulletHit(body)