Hi,
I would like to make a horror game, inspired by Corpse Party
So I would like create an RPG Maker looking games with tiles, but with lot of dialouge.
I am in preproduction phase, collecting ideas and choosing tools. I already watched the Adventure Creator 2D tutorial and a huge part of 2.5D, I think this tool and Dialouge System can handle my ideas in the future.
But, I am an artist, not a programmer. As far as I see my opportunities with Adventure Creator, this RPG movement is not possible, because I don't want using navigation mesh, as far as I understand things, it's better and faster choice to me to add colliders to the tiles.
So my question is: Is better to add a standard 2D movement to the character with some kind of scripts (maybe Playmaker?), or there is a solution for this in Adventure Creator but I did not found it yet?
Thank you very much, sorry for this kind of noob question, I did not found answer for that.
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
Welcome to the community, @abysan.
You can do this with a custom script that moves characters in a 2D grid. For a game like the one above, you'll first want to make use of Unity's Tilemap system to create your 2D scene.
Then, set the AC Scene Manager's Pathfinding method to A Star 2D, which uses a grid system for navigation.
Create a Tilemap specifically for the floor, and attach a Tilemap Collider (with "Is Trigger" checked) and AC's Navigation Mesh component. Reduce the Cell size so that it matches the tiles, and assign this as the Scene Manager's Default NavMesh.
There's a few elements at play with the above, so share screenshots if you get stuck and I'll point you in the right direction.
Once done, it's then a case of setting your Settings Manager's Movement method to None, and attaching a simple script like the one below (GridMovement.cs) to your Player character. Keep the Player in the scene and fill in their Inspector with a reference to the "floor" Tilemap created earlier:
This is very useful and super answer, not just for me. I hope in the future other people will be able to use it well ^^