SetCursorAlpha: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Fernando187 (talk | contribs) No edit summary |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 6: | Line 6: | ||
bool setCursorAlpha( int alpha ) | bool setCursorAlpha( int alpha ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[File:SetCursorAlpha.jpg|thumb|example of cursor alpha]] | |||
===Required Arguments=== | ===Required Arguments=== | ||
*'''alpha ''': The alpha value to set. Value can be 0-255, where 255 is fully opaque and 0 is fully transparent. | *'''alpha ''': The alpha value to set. Value can be 0-255, where 255 is fully opaque and 0 is fully transparent. | ||
Line 30: | Line 30: | ||
==See Also== | ==See Also== | ||
{{ | {{Cursor_functions|client}} | ||
[[hu:setCursorAlpha]] | [[hu:setCursorAlpha]] |
Latest revision as of 15:14, 6 November 2024
This function is used to change alpha (transparency) from the client's cursor.
Syntax
bool setCursorAlpha( int alpha )
Required Arguments
- alpha : The alpha value to set. Value can be 0-255, where 255 is fully opaque and 0 is fully transparent.
Returns
Returns true if the new alpha value was set, or false otherwise.
Requirements
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" />
Example
-- 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 )