diff options
| author | Amir Rajan <[email protected]> | 2020-09-22 06:27:46 -0500 |
|---|---|---|
| committer | Amir Rajan <[email protected]> | 2020-09-22 06:27:46 -0500 |
| commit | 20d5b4057b44ffcf92478b2a8e9476ace2fdc0f5 (patch) | |
| tree | b4742e4f9acfd5400a04f314164812606a71df9f /docs/todo | |
| parent | 5b2311900072cfff9582bb0296140cfb354cb911 (diff) | |
| download | dragonruby-game-toolkit-contrib-20d5b4057b44ffcf92478b2a8e9476ace2fdc0f5.tar.gz dragonruby-game-toolkit-contrib-20d5b4057b44ffcf92478b2a8e9476ace2fdc0f5.zip | |
synced with 1.22
Diffstat (limited to 'docs/todo')
| -rw-r--r-- | docs/todo/06-keyboard.md | 2 | ||||
| -rw-r--r-- | docs/todo/08-controllers.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/todo/06-keyboard.md b/docs/todo/06-keyboard.md index 6fbe6d2..4037e3f 100644 --- a/docs/todo/06-keyboard.md +++ b/docs/todo/06-keyboard.md @@ -47,7 +47,7 @@ def tick args [args.inputs.controller_two, :controller_two] ].each do |input, name| if input.key_down.truthy_keys.length > 0 - args.gtk.write_file("mygame/app/#{name}_key_down_#{args.state.tick_count}", input.key_down.truthy_keys.to_s) + args.gtk.write_file("app/#{name}_key_down_#{args.state.tick_count}", input.key_down.truthy_keys.to_s) end end end diff --git a/docs/todo/08-controllers.md b/docs/todo/08-controllers.md index 68bd9c2..aa85ee8 100644 --- a/docs/todo/08-controllers.md +++ b/docs/todo/08-controllers.md @@ -46,7 +46,7 @@ def tick args [args.inputs.controller_two, :controller_two] ].each do |input, name| if input.key_down.truthy_keys.length > 0 - args.gtk.write_file("mygame/app/#{name}_key_down_#{args.state.tick_count}", input.key_down.truthy_keys.to_s) + args.gtk.write_file("app/#{name}_key_down_#{args.state.tick_count}", input.key_down.truthy_keys.to_s) end end end |
