Escribo esto porque tengo un pequeño error en LuaDev
Error: Pantalla Negra, no pasa nada
Script.lua:
--Menu Anaglif3D-- cyan = color.new(0,255,255) rojo = color.new(255,0,0) menu = 1 r = "Iniciar Reproduccion de Imagenes 3D" s = "Salir" c = "Creditos" ins = "Instrucciones" while true do if os.language == english then r = "Begin 3D Image Reproduction" s = "Quit" c = "Credits" ins = "Instructions" end controls.read() draw.gradrect(0,0,480,272,cyan,rojo,cyan,rojo) if menu == 1 then screen.print(89,38,r,2,cyan,rojo) screen.print(120,120,ins,1,rojo,0x0) screen.print(120,202,c,1,cyan,0x0) screen.print(120,284,s,1,rojo,0x0) end if menu == 2 then screen.print(89,38,r,1,cyan,0x0) screen.print(120,120,ins,2,rojo,cyan) screen.print(120,202,c,1,cyan,0x0) screen.print(120,284,s,1,rojo,0x0) end if menu == 3 then screen.print(89,38,r,1,cyan,0x0) screen.print(120,120,ins,2,rojo,0x0) screen.print(120,202,c,1,cyan,rojo) screen.print(120,284,s,1,rojo,0x0) screen.flip() end if controls.press("up") then menu = menu-1 end if controls.press("down") then menu = menu+1 end if menu < 1 then menu = 4 end if menu > 4 then menu = 1 end if controls.press("cross") and menu == 1 then dofile("system/imagenes-reproduc.lua") end --Instrucciones-- if controls.press("cross") and menu == 2 then screen.print(220,38,"PARA COMENZAR ELEJI LA OPCION QUE",1.5,cyan,rojo) screen.print(260,38,"DICE ESO Y PARA SALIR \"SALIR\"",1.5,rojo,cyan) screen.print(275,50,"¿OBVIO NO?",0.5,cyan,cyan) screen.flip() end --Creditos-- if controls.press("cross") and menu == 3 then screen.print(175,38,"CODE",2,rojo,rojo) screen.print( 240,76,"TINAKUS",1.3,cyan,cyan) screen.print(300,38,"IMAGENES",2,rojo,rojo) screen.print(340,76,"Bueno... aca iria alguien que me de algunas imgs",1,cyan,cyan) screen.flip() end if controls.press("cross") and menu == 4 then os.exit() end end
no hay
screen.flip() en el ultimo end
Es ultranecesario
Ahora
Ahora se actualiza muy rapido cuando estoy en la opcion instrucciones , creditos y salir
Les saco sus screen.flip() ?
si
es lo mejor
Ahora
Ahora cuando selecciono alguna de las opciones aparece y desaparecen