Jump to content

Gui Imagen


psicobleach

Recommended Posts

Sí, por ejemplo creas el botón con guiCreateButton, luego por encima creas la imagen con guiCreateStaticImage, luego para que no se vea el botón usas guiSetAlpha, y con el evento onClientGUIClick ejecutas la función al presionar un botón GUI

Ejemplo:

 

button = guiCreateButton(0, 0, 80, 80, "Botón", false)
image = guiCreateStaticImage(0, 0, 80, 80, "image.png", false)

guiSetAlpha(button, 0)

addEventHandler("onClienGUIClick", button, 
  	function()
   		--código
   	end
)

 

Link to comment
  • Recently Browsing   0 members

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