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
--Slash, Pop, Spin & Squash | |
-- by West | |
-- basic game framework in place. Flick on the screen to slash - create a vertical line slash through the V Slash rectangles, and a horizontal line through the H Slash ones | |
--Tap inside the rectangle to destroy the Pop ones. Draw a circle (making sure start and end meets) to destroy the spin rectangles. Pinch screen inside rectangle to destry the Pinch ones. | |
function setup() | |
displayMode(FULLSCREEN) | |
READY=1 | |
PLAYING=2 | |
LEVELCOMPLETE=3 | |
GAMEOVER=4 |
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
--# Main | |
-- Meshchopper | |
--various goals | |
--chop without letting fragments on screen go above a certain amount | |
--get x fragments on screen at once | |
--use limited number of slashes |
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
--simple lemmings clone with all the basic skills. All images used are shipped with Codea. Not an exact clone, rough and ready in places. No scrolling and no finite state machine control but basics demonstrateed. | |
--by West | |
--alternative selection | |
--use tap or drag to select active men then click on buttons to apply to them. use arrows to indicate selectiom | |
displayMode(FULLSCREEN) | |
function setup() | |
FALL=1 | |
WALK=2 | |
DOWNDIG=3 |
OlderNewer