GetCursorAlpha: Difference between revisions
Jump to navigation
Jump to search
Fernando187 (talk | contribs) |
Fernando187 (talk | contribs) No edit summary |
||
Line 6: | Line 6: | ||
int getCursorAlpha ( ) | int getCursorAlpha ( ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[File:SetCursorAlpha.jpg|thumb|example of cursor alpha]] | |||
===Returns=== | ===Returns=== | ||
Returns a [[int]] between 0 and 255, where 255 is fully opaque and 0 is fully transparent. | Returns a [[int]] between 0 and 255, where 255 is fully opaque and 0 is fully transparent. |
Latest revision as of 15:14, 6 November 2024
This function is used to get the client's cursor alpha (transparency).
Syntax
int getCursorAlpha ( )
Returns
Returns a int between 0 and 255, where 255 is fully opaque and 0 is fully transparent.
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 getCursorAlpha function addCommandHandler( "cursorAlpha", function () if ( isCursorShowing ( ) ) then outputChatBox( "The cursor alpha: "..getCursorAlpha( ) ) else outputChatBox( "The cursor is not showing!" ) end end )