Jump to content

Ayuda animacion gui


PDMTA

Recommended Posts

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...