Releases: ANSH3LL/plugin_hwcursor
Releases · ANSH3LL/plugin_hwcursor
v0.6
New in v0.6
loadWinCursorhas been removed as it is redundant. To set one of the cursors provided by windows or macOS, take a look here.loadCursorno longer sets the cursor, but only serves to load it and return a pointer. To set a loaded cursor, usesetCursor.destroyCursorhas been renamed tofreeCursorshowCursorandhideCursorhave been replaced withsetVisibilityto allow you more agency in how you hide and show the cursor.setVisibilityis a wrapper around ShowCursor.- Stability improvements; the plugin will no longer cause the simulator to crash on exit.
v0.5
- Cursors must be preloaded before use. An example project is available in the
Corona/directory - Cursor handles can be destroyed at will using the
plugin.destroyCursor(cursor)method. It is recommended to do this before exiting the application programmatically - Load a cursor of any size without downscaling, i.e: 256x256 size cursor will load at this size and be very big as you'd expect. An example is available in the
Corona/directory