HU/setCursorAlpha: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{client function hu}} This function is used to change alpha (transparency) from the client's cursor. ==Szintaxis== <syntaxhighlight lang="lua"> bool setCursorAlpha( int alph...")
 
No edit summary
Line 30: Line 30:


==Lásd még==
==Lásd még==
{{GUI_functions}}
{{GUI_functions hu}}


[[en:setCursorAlpha]]
[[en:setCursorAlpha]]

Revision as of 13:01, 14 October 2018

This function is used to change alpha (transparency) from the client's cursor.

Szintaxis

bool setCursorAlpha( int alpha )

Kötelező paraméterek

  • alpha : The alpha value to set. Value can be 0-255, where 255 is fully opaque and 0 is fully transparent.

Visszatérési érték

Returns true if the new alpha value was set, or false otherwise.

Requirements

Minimum server version n/a
Minimum client version 1.3.2

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version client="1.3.2" />

Példa

-- Simple command to test the setCursorAlpha function
addCommandHandler( "cursorAlpha", 
    function ()
        -- Show the cursor if it is not showing or hide the cursor if it is
        showCursor( not isCursorShowing ( ) )
        -- Set the alpha to 100
        setCursorAlpha(100)
    end
)

Lásd még

GUI függvények

Böngészők

Gombok

Jelölőnégyzetek

Lenyíló listák

Beviteli mezők

Rács listák

Szövegdobozok

Töltéscsíkok

Rádió gombok

Görgetősávok

Görgetőablakok

Statikus képek

Füles ablakok

Fülek

Szövegek

Ablakok

Fordította