GetCursorAlpha: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Remove obsolete Requirements section)
 
(14 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{client function}}
{{Client function}}
{{New feature/item|3.0132|1.4|5242|
This function is used to get the client's cursor alpha (transparency).
This function is used to get alpha (transparency) from the client's cursor.
}}


==Syntax==
==Syntax==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
float getCursorAlpha( )
int getCursorAlpha ( )
</syntaxhighlight>
</syntaxhighlight>
 
[[File:SetCursorAlpha.jpg|thumb|example of cursor alpha]]
===Returns===
===Returns===
Returns a float (0-255) indicating the cursor's alpha
Returns a [[int]] between 0 and 255, where 255 is fully opaque and 0 is fully transparent.
 
==Requirements==
{{Requirements|n/a|1.4}}


==Example==
==Example==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
-- Todo
-- Simple command to test the getCursorAlpha function
addCommandHandler( "cursorAlpha",
    function ()
        if ( isCursorShowing ( ) ) then
            outputChatBox( "The cursor alpha: "..getCursorAlpha( ) )
        else
            outputChatBox( "The cursor is not showing!" )
        end
    end
)
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{GUI_functions}}
{{Cursor_functions|client}}
 
[[hu:getCursorAlpha]]

Latest revision as of 17:11, 7 November 2024

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

Syntax

int getCursorAlpha ( )
example of cursor alpha

Returns

Returns a int between 0 and 255, where 255 is fully opaque and 0 is fully transparent.

Example

-- Simple command to test the getCursorAlpha function
addCommandHandler( "cursorAlpha", 
    function ()
        if ( isCursorShowing ( ) ) then
            outputChatBox( "The cursor alpha: "..getCursorAlpha( ) )
        else
            outputChatBox( "The cursor is not showing!" )
        end
    end
)

See Also