예제 #1
0
 // Use this for initialization
 void Start()
 {
     y   = transform.position.y;
     car = new DubinCar(radius);
 }
예제 #2
0
파일: rrTree.cs 프로젝트: biagio90/Lab2
 public rrTree(float r)
 {
     car = new DubinCar(r);
 }
예제 #3
0
 void Start()
 {
     car = new DubinCar(radius);
 }
예제 #4
0
파일: rrTree.cs 프로젝트: biagio90/Lab2
 public rrTree()
 {
     car = new DubinCar();
 }
예제 #5
0
 // Use this for initialization
 void Start()
 {
     car   = new DubinCar(radius, 10, 2, debugDubin);
     mainY = transform.position.y;
 }