I've tried using the hash plugin as well, but can't get it to successfully load up a JSON file into an array for me. There might be a better way to approach this, but I'm new to C2 and don't yet know all the intricacies.
Each key below is the name of a level of my game. Each value represents a grid (or array), from 1x1 for "Simple Tap," to 2x2 for "Four Drum Rounder."
Ultimately, I'd like to call up a level and plot on the screen the pattern. How do I load this into C2 so I can make use of it in that way?
Thank you!
{
"Simple Tap": [ [ [1] ] ],
"Double Tap": [ [ [1],[2] ] ],
"Triple Tap": [ [ [1],[2],[3] ] ],
"Quad Tap": [ [ [1],[2],[3],[4] ] ],
"Quad Tap Double Back": [ [ [1],[2],[4],[3] ] ],
"Single Double": [ [ [1,3],[2] ] ],
"Triple Back and Forth": [ [ [1],[2,4],[3] ] ],
"Three Drum Intervals": [ [ [1,3],[2],[4] ] ],
"Angled Triple": [ [ [1],[2] ], [ [3],[0] ] ],
"Four Square Reverse": [ [ [1],[2] ], [ [3],[4] ] ],
"Four Square Rounder": [ [ [2],[1] ], [ [3],[4] ] ]
}