i did just that: works like a charm. now i'm going to try collision detection, and having a complete seperate map for blue tiles so they're checked every "vsync or step or frame" i'll call it frame.
Printable View
i did just that: works like a charm. now i'm going to try collision detection, and having a complete seperate map for blue tiles so they're checked every "vsync or step or frame" i'll call it frame.
I can't get my "Hello World" to work.
It always says script not found.
post the exact script then
What's in the script?
can u post it all plz?
-- My First Lua Program
-- Author: Shadox75
-- Colours
blue = Color.new(0, 0, 255)
-- Other
screen:print(200, 130, "Firmware 3.00", blue)
screen.flip()
while true do
screen.waitVblankstart()
end
all of ur code
It's "Hello World" isn't that all of it?
sorry, try changin it to this:
-- My First Lua Program
-- Author: Shadox75
-- Colours
blue = Color.new(0, 0, 255)
-- Other
screen:clear()
screen:print(200, 130, "Firmware 3.00", blue)
while true do
screen.waitVblankstart()
screen.flip()
end
It says Error: No script file found.
Press start to restart