diff options
| -rw-r--r-- | dragon/directional_input_helper_methods.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dragon/directional_input_helper_methods.rb b/dragon/directional_input_helper_methods.rb index dcf5f07..3891b5b 100644 --- a/dragon/directional_input_helper_methods.rb +++ b/dragon/directional_input_helper_methods.rb @@ -54,8 +54,8 @@ S # - `nil` which denotes that no directional input exists. # - `[ 0, 1]` which denotes that only up is being held/pressed. # - `[ 0, -1]` which denotes that only down is being held/pressed. - # - `[ 1, 1]` which denotes that right and up are being pressed/held. - # - `[-1, -1]` which denotes that left and down are being pressed/held. + # - `[ 0.5, 0.5]` which denotes that right and up are being pressed/held. + # - `[-0.5, -0.5]` which denotes that left and down are being pressed/held. # # @gtk def directional_vector |
