CeKiT Posted September 30, 2012 Share Posted September 30, 2012 Hola a Todos! Elavore esta funcion, la cual me parece que funciona aun no la eh probado. local screenWidth,screenHeight = guiGetScreenSize() -- Obtenemos la resolución. function mostarimagen () local angle = math.sin(seconds) * 80 dxDrawImage ( screenWidth/2 - 50, 0, 100, 240, 'miimagen.png', angle, 0, -120 ) end y yo tengo esto: redwinsdisplay = textCreateDisplay() local redtext = textCreateTextItem ( "EQUIPO ROJO! Gana la batalla!", 0.5, 0.5, "low", 255, 0, 0, 255, 3, "center", "center" ) textDisplayAddText ( redwinsdisplay, redtext ) bluewinsdisplay = textCreateDisplay() local bluetext = textCreateTextItem ( "EQUIPO AZUL! Gana la batalla!", 0.5, 0.5, "low", 0, 0, 255, 255, 3, "center", "center" ) textDisplayAddText ( bluewinsdisplay, bluetext ) tiegamedisplay = textCreateDisplay() local tietext = textCreateTextItem ( "La batalla resulto un empate!", 0.5, 0.5, "low", 255, 255, 255, 255, 3, "center", "center" ) textDisplayAddText ( tiegamedisplay, tietext ) waitDisplay = textCreateDisplay() local waittext = textCreateTextItem ( "Esperando el comienzo de la batalla!", 0.5, 0.9, "low", 255, 255, 255, 255, 1.6, "center", "center" ) textDisplayAddText ( waitDisplay, waittext ) Lo que quiero hacer es sustituirlo por una imagen en vez de decir Equipo Azul! Gana la batalla!, que muestre una imagen por ejemplo winblue.png Bueno esto de llamar la funcion y mostrar la imagen no es el problema, mi problema es como la saco, cuando la llame se va a mostrar pero como hago que en 15 segundos se quite de la pantalla? Gracias Link to comment
Renkon Posted October 1, 2012 Share Posted October 1, 2012 Puedes crearlas onClientResourceStart y cambiarles el alpha para mostrarlas. Y no estoy seguro pero quizás destroyElement funcione. No estoy seguro Link to comment
NodZen Posted October 1, 2012 Share Posted October 1, 2012 no me funciono function showImage () foto = guiCreateStaticImage ( las ubicacioens , la imagen.png) setTimer ( destroyElement, 15000, 1, foto ) end addEventHandler("onResourceStart", showImage) Tu lo editas a tu gusto Link to comment
Recommended Posts