Skip to content

Instantly share code, notes, and snippets.

View NathanFlurry's full-sized avatar
🔩
Riveting

Nathan Flurry NathanFlurry

🔩
Riveting
View GitHub Profile
@NathanFlurry
NathanFlurry / 3D StackIt Prototype
Created October 7, 2013 00:45
Today, I wanted to learn in depth how to use the 3D aspect of Codea, so I embarked on making a simple 3D prototype of my game StackIt. Please note, there's tons of bugs, but I needed to keep working on the actual StackIt, so I stopped the development there.
--# Main
displayMode(FULLSCREEN)
supportedOrientations(PORTRAIT_ANY)
function setup()
bg = getGradient(vec2(WIDTH,HEIGHT),color(0,90,255),color(50,190,255))
Game:init()
end