From 88b5fe5aa46649bb41834001ef488ed72fab1384 Mon Sep 17 00:00:00 2001 From: Sean Sullivan Date: Thu, 29 Feb 2024 22:49:06 -0500 Subject: [PATCH] remove random git file oops --- git | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 git diff --git a/git b/git deleted file mode 100644 index 21055ef..0000000 --- a/git +++ /dev/null @@ -1,41 +0,0 @@ -Diff in /home/snen/dev/github/leafwing_input_playback/examples/gamepad.rs at line 182: - triangle: meshes - .add(RegularPolygon::new(BUTTON_RADIUS, 3).mesh()) - .into(), -- start_pause: meshes.add(Rectangle::new(START_SIZE.x, START_SIZE.y).mesh()).into(), -(B- trigger: meshes.add(Rectangle::new(TRIGGER_SIZE.x, TRIGGER_SIZE.y).mesh()).into(), -(B+ start_pause: meshes -(B+ .add(Rectangle::new(START_SIZE.x, START_SIZE.y).mesh()) -(B+ .into(), -(B+ trigger: meshes -(B+ .add(Rectangle::new(TRIGGER_SIZE.x, TRIGGER_SIZE.y).mesh()) -(B+ .into(), -(B } - } - } -Diff in /home/snen/dev/github/leafwing_input_playback/src/input_playback.rs at line 189: - match timestamped_input_event.input_event { - Keyboard(e) => { - input_writers.keyboard_input.send(e); -- }, -(B+ } -(B MouseButton(e) => { - input_writers.mouse_button_input.send(e); -- }, -(B+ } -(B MouseWheel(e) => { - input_writers.mouse_wheel.send(e); -- }, -(B+ } -(B // Window events MUST update the `Window` struct itself - // BLOCKED: https://github.com/bevyengine/bevy/issues/6163 - CursorMoved(e) => { -Diff in /home/snen/dev/github/leafwing_input_playback/src/input_playback.rs at line 212: - } - AppExit => { - input_writers.app_exit.send_default(); -- }, -(B+ } -(B }; - } - }