PDMTA Posted June 20, 2016 Share Posted June 20, 2016 Quiero aprender a agregarle una apertura con animación a una gui, alguna ayuda .? La idea es que la gui abra algo similar como el scoreboard pero desde arriba hasta abajo. ------- Editado: esto es lo mas aproximado que he podido conseguir en la gui usando guiGetSize local window = guiCreateWindow ( 0, 0, (math.random ( 0, 100 ) / 100), (math.random ( 0, 100 ) / 100), "test", true ) -- Create the window local x, y = guiGetSize ( window, false ) -- Get the gui window size outputChatBox ( "Window size: " .. x .. " " .. y ) --output the gui window size Esto hace que la gui cambie de tamaño de manera al azar por el math.random. -------- Editado 2: Ahora intente usar math.min math.max local window = guiCreateWindow ( 0, 0, (math.min ( 0, 50 ) / 100), (math.max ( 0, 50 ) / 100), "test", true ) -- Create the window local x, y = guiGetSize ( window, false ) -- Get the gui window size Desde aqui puedo comenzar? Link to comment
Bc# Posted June 20, 2016 Share Posted June 20, 2016 Creo que vas mal si estas usando eso para hacer la animación. Usa variables globales o guiSetSize en un onClientRender Link to comment
Recommended Posts