Skip to content

Instantly share code, notes, and snippets.

@EricTRocks
Created October 12, 2016 21:26
Show Gist options
  • Save EricTRocks/0a10414ef3019480e3f0bb5401f0a93c to your computer and use it in GitHub Desktop.
Save EricTRocks/0a10414ef3019480e3f0bb5401f0a93c to your computer and use it in GitHub Desktop.
Create a 2D array of Vec3 values in Fabric Engine KL
require Math;
operator entry() {
Vec3 myArray[][];
Vec3 array1[];
array1.push(Vec3(1,2,3));
Vec3 array2[];
array2.push(Vec3(3,2,1));
myArray.push(array1);
myArray.push(array2);
report(myArray);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment