728x90 ๋ฐ์ํ ์ ๋ํฐ9 [Unity]2D๊ฒ์๋ง๋ค๊ธฐ #4_ ํ๋ ์ด์ด ์ ํ ๊ตฌํ ๋ฌผ๋ฆฌ๋ ฅ์ ์ํ ์ ํ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 public class PlayerMove : MonoBehaviour { public float maxSpeed; public float jumpPower; Rigidbody2D rigid; SpriteRenderer spriteRenderer; Animator anim; void Awake() { rigid = GetComponent(); rigid.freezeRotation = true; spriteRenderer = GetComponent (); anim = GetComponent(); } // ํค๋ณด๋์์ ์์ ๋์ ๋ ์์ stop -->๋ฉ์ถ ๋ ์๋ p.. 2021. 9. 26. [Unity]2D๊ฒ์ ๋ง๋ค๊ธฐ #2 _์ํ๋ผ์ค/์ ๋๋ฉ์ด์ ์ํ๋ผ์ค ์ ๋ํฐ์์ '์ํ๋ผ์ค'๋ ์ฌ๋ฌ ๊ฐ์ ์คํ๋ผ์ดํธ(Sprite)๋ฅผ ํ ์ฅ์ ํฐ ํ ์ค์ณ์ ๋ชจ์๋์ ๊ฒ์ด๋ผ๊ณ ๋ณผ ์ ์๋ค. ์ฝ๊ฒ ์ค๋ช ํ์๋ฉด, ์์ ์คํ ์ด์์ Sprites๋ฅผ ๋ค์ด ๋ฐ๊ณ ๋์ ์ ์ฌ์ง์ฒ๋ผ ์ด๋ฏธ์ง๋ฅผ ๋๋ธํด๋ฆญํ๋ฉด ์ฌ๋ฌ๊ฐ์ ์ด๋ฏธ์ง๊ฐ ์กฐ๊ฐ๋์ ๋ ๋ํ๋๋ ๊ฒ์ ๋ณผ ์ ์๋ค. ์ด๊ฑธ ํ๋๋ก ๋ฌถ์ด์ค๊ฒ ์ํ๋ผ์ค์ด๋ค! ํนํ ๋ชจ๋ฐ์ผ์ ๊ฒฝ์ฐ ์ํ๋ผ์ค๋ฅผ ์ฌ์ฉํด์ค์ผ Batch๋ฅผ ์ค์ฌ์ค๋ค +)Batch : ๊ทธ๋ํฝ์ ๊ทธ๋ฆฌ๊ธฐ ์ํด ๋ฉ๋ชจ๋ฆฌ์ CPU๋ฅผ ์ฌ์ฉํ ํ์ https://skuld2000.tistory.com/28 [Unity] ์ด์ Sprite Packer ๋ ๊ทธ๋ง. Sprite Atlas ๋ฅผ ์ฌ์ฉํ์. ์ ๋ํฐ์์ ์ํ๋ผ์ค(Atlas) ๋ ์ฌ๋ฌ ๊ฐ์ ์คํ๋ผ์ดํธ(Sprite)๋ฅผ ํ ์ฅ์ ํฐ ํ ์ค์ณ์ ๋ชจ์๋์ ๊ฒ์ด.. 2021. 8. 24. [Unity] 2D๊ฒ์ ๋ง๋ค๊ธฐ #1_ ํ๋ก์ ํธ ๊ธฐ๋ณธ์ค์ ์ ํ๋ธ ๊ณจ๋๋ฉํ๋์ ๊ฐ์ '2Dํ๋ซํฌ๋จธ'๋ฅผ ๊ณต๋ถํ๋ฉฐ ์์ฑํ์ต๋๋ค https://www.youtube.com/watch?v=v_Y5FH_tCpc&list=PLO-mt5Iu5TeZGR_y6mHmTWyo0RyGgO0N_&index=1 ๊ณจ๋๋ฉํ๋ ์์ ์ ๋ค์ด๋ฐ๊ณ ์ถ์ผ์๋ค๋ฉด http://u3d.as/2mvJ Simple 2D Platformer Assets Pack | 2D ์บ๋ฆญํฐ | Unity Asset Store Elevate your workflow with the Simple 2D Platformer Assets Pack asset from Goldmetal. Find this & more ์บ๋ฆญํฐ on the Unity Asset Store. assetstore.unity.com ์คํ๋ผ์ดํธ - 2D๋ Li.. 2021. 8. 23. [Unity] ์บ๋ฆญํฐ๋ฅผ WASDํค๋ก ์ด๋์ํค๊ธฐ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 public class PlayerController : MonoBehaviour { void Start() { } void Update() { // w ->์ if (Input.GetKey(KeyCode.W)) { transform.position += new Vector3(0.0f, 0.0f, 1.0f); } // s->๋ค if (Input.GetKey(KeyCode.S)) { transform.position -= new Vector3(0.0f, 0.0f, 1.0f); } if (Input.GetKey(KeyCode.A)) { tran.. 2021. 8. 18. ์ด์ 1 2 3 ๋ค์ 728x90 ๋ฐ์ํ