Created
October 22, 2013 18:40
-
-
Save lmccart/7105828 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| var data; | |
| var setup = function() { | |
| createGraphics(600, 400); | |
| loadJSON("sample.js", function(resp) { | |
| data = resp; | |
| console.log(data) | |
| }); | |
| }; | |
| var draw = function() { | |
| background(120, 180, 200); | |
| print(data); | |
| }; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment