DxImage: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
Line 20: Line 20:
* '''textureformat''': Formatos validos '''''"argb"''''' '''''"dxt1"''''' '''''"dxt3"''''' '''''"dxt5"''''' ; <small>'''<span style="color:#000000; text-shadow:black 0em 0.1em 0.1em;">''Para mas información véase [[dxCreateTexture]]!''</span>'''</small>
* '''textureformat''': Formatos validos '''''"argb"''''' '''''"dxt1"''''' '''''"dxt3"''''' '''''"dxt5"''''' ; <small>'''<span style="color:#000000; text-shadow:black 0em 0.1em 0.1em;">''Para mas información véase [[dxCreateTexture]]!''</span>'''</small>
* '''mipmaps''': Un booleano (true o false) ; <small>'''<span style="color:#000000; text-shadow:black 0em 0.1em 0.1em;">''Para mas información véase [[dxCreateTexture]]!''</span>'''</small>
* '''mipmaps''': Un booleano (true o false) ; <small>'''<span style="color:#000000; text-shadow:black 0em 0.1em 0.1em;">''Para mas información véase [[dxCreateTexture]]!''</span>'''</small>
* '''textureType''': Formatos valudos '''''"wrap"''''' '''''"clamp"''''' '''''"mirror"''''' ; <small>'''<span style="color:#000000; text-shadow:black 0em 0.1em 0.1em;">''Para mas información véase [[dxCreateTexture]]!''</span>'''</small>
* '''textureType''': Formatos validos '''''"wrap"''''' '''''"clamp"''''' '''''"mirror"''''' ; <small>'''<span style="color:#000000; text-shadow:black 0em 0.1em 0.1em;">''Para mas información véase [[dxCreateTexture]]!''</span>'''</small>


==Ejemplo==  
==Ejemplo==  

Latest revision as of 20:14, 21 May 2022

Esta función crea una imagen basada en dxCreateTexture + dxDrawing.

Aviso: Esta es una función exportada por Modern-Library!

Syntax

element dxImage( int x, int y, int w, int h, string filepath, [ element parent = nil , string textureformat = 'dxt5', mipmaps = true, textureType = 'clamp' ] )

Argumentos requeridos

  • x: Un entero que representa la posición X de la pantalla.
  • y: Un entero que representa la posición Y de la pantalla.
  • w: Un entero que representa el ancho del dxImage.
  • h: Un entero que representa la altura del dxImage.
  • filepath: La ruta donde se encuentra la imagen.

Argumentos Opcionales

  • parent: Este es el padre el cual la imagen se adjunta.
  • textureformat: Formatos validos "argb" "dxt1" "dxt3" "dxt5" ; Para mas información véase dxCreateTexture!
  • mipmaps: Un booleano (true o false) ; Para mas información véase dxCreateTexture!
  • textureType: Formatos validos "wrap" "clamp" "mirror" ; Para mas información véase dxCreateTexture!

Ejemplo

loadstring(exports.dxlibrary:dxGetLibrary())()
--creamos una imagen
dxImage(561, 92, 116, 92, ":admin/client/images/map.png")

Ver también

General Functions

Window

Button

CheckBox

Edit

GridList

Image

Label

List

ProgressBar

ScrollBar