Some questions about 2d games in unity
Hi guys , I want to make a 2D game with unity , I have some problems and questions :
What is the best tutorial for make 2D games ?
I wanna make special characters for my game ( like this : goo.gl/R5wYaY ) , how can I do that ? please say complete answer
and I want to make animate them , how can I do that ?
oh , and I want to write text rtl ( I want write persian text ) I can't do that with Unity ! I have to use Photoshop for that , is another way to do that ?
and how can I compress and tiny my codes ? I mean , I want to make a game with low size , how can I do that ?
please help me , thanks .
Answer by TanselAltinel · Sep 21, 2016 at 12:48 PM
Start here: https://unity3d.com/learn/tutorials/topics/2d-game-creation
Continue here: https://unity3d.com/learn/live-training/archive
Answer by reHgoc · Sep 21, 2016 at 01:47 PM
Unity lesson - Roggue, than this good tutorial https://www.youtube.com/watch?v=oK_NzdVSxaQ
Draw them
Cut them on part, or make skillet animate
You may try write tex on Persian and than make screenshot
Unity have other resolution of screen (in Build and Setting - change device/platform), if you want rule resolution of screen with code - You can add follow code on C#:
Screen.SetResolution(width, height, bool windowed or not);
Example: You want using display with 640x480 fullscreen:
Screen.SetResolution(640, 480, true);
or add follow code in Start() methods Camera.main.aspect = 480f / 800f;