(Formerly known as HideMouseCursor, which is now obsolete)
(Formerly known as ShowMouseCursor, which is now obsolete)
bool Mouse.Visible;
Gets/sets whether the mouse cursor is visible. This is initially true by default,
but setting this to false is useful for briefly hiding the cursor on occasions
when you don't want it around.
If you want the Lucasarts-style where the mouse cursor is never visible during cutscenes
then a much easier solution is simply to import a transparent graphic over the default
wait cursor, so that the Wait cursor becomes invisible.
Example:
mouse.Visible = false;
Wait(40);
mouse.Visible = true;
hides the mouse, waits for a second, then turns it back on again
See Also: Mouse.UseModeGraphic
|