- Home /
Level design clone of King of Thieves
I was trying to figure out how to replicate the level design of the King Of Thieves game.
Here's a reference image:
It looks like there's a full screen texture (the dark brown circles and lines) with a mask over it which outlines the level and acts as boundaries. Then another texture in the background.
How would you suggest I replicate this in Unity? Edge Collider 2d? Unity UI? Full screen textures and masks?
Thanks for any advice.
No need to be a mask, it could be a mesh (the same one used for the physics colliders) with proper vertex coordinates. But masks could work also.
Your question is to generic in my opinion, you could use whatever you said, physics 2d, Unity UI... all of those work to replicate a game like this one, maybe you want to ask something more specific.
The only thing I can say you need to be aware of is that a game like kot needs to be deter$$anonymous$$istic to be able to solve the dungeons in the same way for everyone on different devices, and for replays. That is not a simple thing, but maybe you are not trying to replicate the multiplayer component of the game.
Your answer
Follow this Question
Related Questions
How to make slider joint immovable by the player 1 Answer
Controller Button Issues 0 Answers
In my 2D platformer game, how would I create a height marker?, 1 Answer
Problem with Falling Platform Script 3 Answers
Problem with 2D movement. My character is moving by himself between two points... :) 1 Answer