RPGMaker MZ – Change Cursor

1. Make a new .js file. E.g. “custom_cursor.js

2. Add this code to the file:

    document.body.style.cursor = 'url("img/pictures/my_cursor.png"), auto';

    3. Make a png image of a cursor. Name it “my_cursor.png”. Think about the size. This one is 24×24 pixels:

      4. Place that image file in the img\pictures folder of your project.

      4. Go to “Tools” > “Plugin Manager”. Double click the lowest empty line and select “custom_cursor.js” from the list.

      That’s all!

      If you want to change the cursor in an event, use the same line of code and place it in a script-block of the event.

      Comments

      Leave a Reply

      Your email address will not be published. Required fields are marked *