블로그에 코드올리기 - 깔끔한 코드 하이라이터 사이트 https://colorscripter.com/ 프로그램 소스 가독성 좋게 바꿔주기 예시 : 12345678910111213141516171819202122232425262728293031323334using System.Collections;using System.Collections.Generic;using UnityEngine;//1. Awake 깨워 -> 2.
Start 시작 ->3. FixedUpdate()/Update() 물리틱/틱 함수public class PlayerControler : MonoBehaviour{ public float speed = 15f; private Rigidbody rb; public void Awake() { .....