diff options
| -rw-r--r-- | app/tick.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/tick.rb b/app/tick.rb index 7539405..11a47a5 100644 --- a/app/tick.rb +++ b/app/tick.rb @@ -40,10 +40,10 @@ def tick args end if args.inputs.keyboard.keys[:down].include?(:space) if @pause - FF::Stg.remove FF::Scn::BoidRules + FF::Stg.add FF::Scn::BoidRules @pause = false else - FF::Stg.add FF::Scn::BoidRules + FF::Stg.remove FF::Scn::BoidRules @pause = true end end |
