diff options
| author | arngo <[email protected]> | 2021-12-23 01:04:59 -0500 |
|---|---|---|
| committer | arngo <[email protected]> | 2021-12-23 01:04:59 -0500 |
| commit | 8116ce1f56aaf5344596ca16177c7abff11b1496 (patch) | |
| tree | ac0b5e048f6b056129b01439fb20b89861efeee5 /app/systems/start_game.rb | |
| parent | b567c7ceb887a8da73a8e2c1015a7638ca1f8fad (diff) | |
| download | SteelWings-8116ce1f56aaf5344596ca16177c7abff11b1496.tar.gz SteelWings-8116ce1f56aaf5344596ca16177c7abff11b1496.zip | |
implement ai components/systems
Diffstat (limited to 'app/systems/start_game.rb')
| -rw-r--r-- | app/systems/start_game.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/systems/start_game.rb b/app/systems/start_game.rb index fd45a14..d6546df 100644 --- a/app/systems/start_game.rb +++ b/app/systems/start_game.rb @@ -9,7 +9,7 @@ FF::Sys.new('StartGame', priority: 50 ) do entity.delete end - FF::Cmp::SingletonTitle[0].delete + FF::Cmp::SingletonTitle[0].title_screen = false FF::Stg.remove FF::Scn::TitleScreen debug_arrow = FF::Cmp::SingletonDebugVectorArrow.new(length: 5) @@ -28,7 +28,7 @@ FF::Sys.new('StartGame', priority: 50 ) do FF::Cmp::SingletonCamera[0], FF::Cmp::Boid.new(h: 1920 * 2, w: 1920 * 2) ) - 5.times do |pos| + 15.times do |pos| Factory::Osprey.new(x: position_range.sample, y: position_range.sample) end |
