-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7378 from diyaayay/Event-ordering
Event Ordering for touch and mouse events
- Loading branch information
Showing
6 changed files
with
202 additions
and
908 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
import acceleration from './acceleration.js'; | ||
import keyboard from './keyboard.js'; | ||
import mouse from './mouse.js'; | ||
import touch from './touch.js'; | ||
import pointer from './pointer.js'; | ||
|
||
export default function(p5){ | ||
p5.registerAddon(acceleration); | ||
p5.registerAddon(keyboard); | ||
p5.registerAddon(mouse); | ||
p5.registerAddon(touch); | ||
p5.registerAddon(pointer); | ||
} |
Oops, something went wrong.