diff options
Diffstat (limited to 'app/components')
| -rw-r--r-- | app/components/debug/singleton_debug_vector_arrow.rb | 1 | ||||
| -rw-r--r-- | app/components/singleton_ai_timer.rb | 5 | ||||
| -rw-r--r-- | app/components/singleton_move_camera.rb | 3 | ||||
| -rw-r--r-- | app/components/singleton_random_ai_pick.rb | 2 |
4 files changed, 11 insertions, 0 deletions
diff --git a/app/components/debug/singleton_debug_vector_arrow.rb b/app/components/debug/singleton_debug_vector_arrow.rb index f06cd27..d6d6de9 100644 --- a/app/components/debug/singleton_debug_vector_arrow.rb +++ b/app/components/debug/singleton_debug_vector_arrow.rb @@ -1,3 +1,4 @@ FF::Cmp.new('SingletonDebugVectorArrow', singleton: true, length: 1) +FF::Cmp::SingletonDebugVectorArrow.new(length: 5) diff --git a/app/components/singleton_ai_timer.rb b/app/components/singleton_ai_timer.rb new file mode 100644 index 0000000..ce14380 --- /dev/null +++ b/app/components/singleton_ai_timer.rb @@ -0,0 +1,5 @@ +FF::Cmp.new('SingletonAITimer', + timer: 0, + interval: 200, + singleton: true) +FF::Cmp::SingletonAITimer.new diff --git a/app/components/singleton_move_camera.rb b/app/components/singleton_move_camera.rb new file mode 100644 index 0000000..88cd8e1 --- /dev/null +++ b/app/components/singleton_move_camera.rb @@ -0,0 +1,3 @@ +FF::Cmp.new('SingletonMoveCamera', singleton: true) + +FF::Cmp::SingletonMoveCamera.new diff --git a/app/components/singleton_random_ai_pick.rb b/app/components/singleton_random_ai_pick.rb new file mode 100644 index 0000000..19f2ca8 --- /dev/null +++ b/app/components/singleton_random_ai_pick.rb @@ -0,0 +1,2 @@ +FF::Cmp.new('SingletonRandomAIPick', singleton: true) +FF::Cmp::SingletonRandomAIPick.new |
