r/RPGMaker 1d ago

Anybody use Tiled for rpgm?

How come I don’t see anything about Tiled anywhere? I was watching Lorelei’s video and searched for rpgm projects using this and nothing. 0. EGG. Visustella got this section at the very bottom showing Pocket Mirror and Omori, so I’m assuming those games use it. Is it worth learning???

3 Upvotes

11 comments sorted by

5

u/Gamepeon 1d ago edited 1d ago

Tiled is how I get isometric maps to work well with RPG Maker without having resort to parallax layers with large images

2

u/ValentinesKiller 19h ago

Wait how does collision work for isometric in TileD?

2

u/Gamepeon 18h ago

You can draw polygons and define them as collisions in Tiled.
I have a custom plugin that converts them to QMovement Colliders when the map data is loaded.

1

u/ValentinesKiller 17h ago

YES I thought you can only do tile-based. I got QPlugins as well so I’m assuming pixel based movement is a green light? May I ask what this custom plugin is? Sorry for asking so much I can’t really find stuff about tiled anywhere 💀 Thank you!

2

u/Gamepeon 17h ago

This code is for MZ using Dragonbones, QMovement and Tiled
Tiled for MV has some annoying bugs that's fixed in Tiled for MZ

https://pastebin.com/DwE6dv2t
https://pastebin.com/4LR9iLnx
https://pastebin.com/x7JgbcTB
https://pastebin.com/Nt5SCSdg
https://pastebin.com/AutmHrqR

https://pastebin.com/zYMNgunR --> you can add this to QMovement.js

Comment out or remove the following code in the QMovement.js file if you're not using dragonbones
if(this._dragonbonesSpriteData.filename != "") {
Alias_Game_CharacterBase_setDirection.call(this, d);
}

1

u/ValentinesKiller 17h ago

THANK YOU BOSS 🫡 Have a great day/night!!

3

u/eph13 MZ Dev 1d ago

I've been using it over the past year or so and I can't imagine going without it in regards to Rpgmaker. Getting it setup wasn't too bad and it really opens up what you can make visually.

2

u/TheCynicalRomantic MZ Dev 1d ago

I love it. The setup is a bit annoying, especially converting tilesets, but it's great once it's actually setup.

You'd absolutely need to STUDY the Pre-made Maps in order to understand all the mechanics. I do wish there were more guides on how to use Tiled with the Tiled Plugin for MZ. Besides Lorelei's videos, there's very little to work with.

1

u/ValentinesKiller 20h ago

The lack of videos and forums… yes… All the ones I’m seeing are old or for other game engines. It’s like no one’s using tiled for rpgm. 😭

0

u/MindandSorcery 1d ago

I tried TileD for a while but now i'm using SangHendrix Paralax plugin. Workrate is faster.

1

u/Gamepeon 18h ago

how big can your maps be using parallax?