Skip to content

getCursorAlpha

Type: Client-side

Pair: setCursorAlpha

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

This example prints the cursor alpha to chatbox using /cursoralpha command:

getCursorAlpha.lua
addCommandHandler( "cursoralpha",
function ()
-- check if cursor is showing
if ( isCursorShowing ( ) ) then
outputChatBox( "The cursor alpha: "..getCursorAlpha( ) )
else
outputChatBox( "The cursor is not showing!" )
end
end
)