- Joined
- Sep 9, 2013
- Messages
- 178
- Reaction score
- 40
- First Language
- German
- Primarily Uses
- RMMV
Hello!
I try to draw a picture at an events position with:
The event doesn't have a fixed position. I tried this:
But it doesn't work. The closest I could get was multiply the x and y with 24. But the pictures still were not at the exact same position as the events.
Does anyone know the pixel dimensions of the grid in RPG Maker MV?
When I put $gameMap.event($eventID).x in the console I get values like 2, 4, 10 or whatever. It counts the tiles between the outer map line and the event. But how many pixels does each tile have?
Thanks in advance!
I try to draw a picture at an events position with:
Code:
$gameScreen.showPicture(params);
Code:
$gameScreen.showPicture(80, "picname", 1, $gameMap.event($eventID).x*36, $gameMap.event($eventID).y*36, 100, 100, 255, 0);
Does anyone know the pixel dimensions of the grid in RPG Maker MV?
When I put $gameMap.event($eventID).x in the console I get values like 2, 4, 10 or whatever. It counts the tiles between the outer map line and the event. But how many pixels does each tile have?
Thanks in advance!

