GetMenuCursorSize

Definition

int GetMenuCursorSize()

Description

This function returns the menu cursor size as an integer number. You can set menu cursor size through Modify > Current VScene Properties menu or through SetMenuCursorSize function.

Return Value

Size of menu cursor.

Example

value = 0

function Init()
    value = GetMenuCursorSize()

    message = string.format("\nMenu cursor size is > %d" ,value )
    PrintConsole(message)
end

function Update()

end
adminGetMenuCursorSize