-
-
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 #7257 from limzykenneth/2.0-modules
Module syntax conversion
- Loading branch information
Showing
35 changed files
with
23,802 additions
and
23,652 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import describe from './describe.js'; | ||
import gridOutput from './gridOutput.js'; | ||
import textOutput from './textOutput.js'; | ||
import outputs from './outputs.js'; | ||
import colorNamer from './color_namer.js'; | ||
|
||
export default function(p5){ | ||
p5.registerAddon(describe); | ||
p5.registerAddon(gridOutput); | ||
p5.registerAddon(textOutput); | ||
p5.registerAddon(outputs); | ||
p5.registerAddon(colorNamer); | ||
} |
Oops, something went wrong.