Unity3D Car/Deceleration 썸네일형 리스트형 Car Deceleration in Unity 유니티에서 자동차 오브젝트의 속도를 줄이는 예 앞선 내용 참고 : http://micropilot.tistory.com/category/Unity3D%20Car/Steer%20Ratio 키보드의 방향키 중에서 전(Up), 후(Down) 방향키를 누르면 자동차의 속도가 증가하고 키를 누르지 않으면 감속되어 점차 멈추는 예제이다.using UnityEngine;using System.Collections; public class Car : MonoBehaviour { // 자동차 바퀴 방향조종을 위한 Transform 4개public Transform tireTransformFL;public Transform tireTransformFR;public Transform tireTransformRL;public.. 더보기 이전 1 다음