예제 #1
0
 public CarAI(Car controller)
 {
     _controller     = controller;
     _transform      = _controller.transform;
     _movement       = controller.Movement;
     _rigidBody      = _controller.GetComponent <Rigidbody>();
     _worldTransform = GameObject.Find("World").transform;
 }
예제 #2
0
파일: CarAI.cs 프로젝트: r1sc/Open76
 public CarAI(Car controller)
 {
     _controller     = controller;
     _transform      = _controller.transform;
     _carPhysics     = controller.GetComponent <CarPhysics>();
     _rigidBody      = _controller.GetComponent <Rigidbody>();
     _worldTransform = GameObject.Find("World").transform;
 }
예제 #3
0
파일: CarInput.cs 프로젝트: JJJohan/Open76
 private void Start()
 {
     _car      = GetComponent <Car>();
     _movement = _car.Movement;
 }
예제 #4
0
파일: CarInput.cs 프로젝트: r1sc/Open76
 private void Start()
 {
     _car        = GetComponent <Car>();
     _carPhysics = GetComponent <CarPhysics>();
 }