Skip to content

Instantly share code, notes, and snippets.

@unaunagi
Created July 11, 2013 05:26
Show Gist options
  • Save unaunagi/5972736 to your computer and use it in GitHub Desktop.
Save unaunagi/5972736 to your computer and use it in GitHub Desktop.
豆腐プログラミングAIMS編
prequire("common.lua");
function OnLoad()
texture1 = createBlankGraphic(50,50);
fillGraphic(texture1,255,255,255,255);
end
function boot_OnStart()
setBGColor(0,0,0);
actor1 = createActor(texture1,50,50,0);
addMover(actor1,0,1,MOVER_MOVETO_L,100,100);
end
function boot_OnStep()
end
function OnVanish()
deleteGraphic(texture);
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment