コード例 #1
0
ファイル: RacerDrive.cs プロジェクト: hitoiki/StackRace
 void Start()
 {
     rb = this.GetComponent <Rigidbody>();
     if (Handling == null)
     {
         Handling = this.GetComponent <IHandling>();
     }
     if (racerState == null)
     {
         racerState = this.GetComponent <RacerState>();
     }
 }
コード例 #2
0
 public PlayingOperation(Handling handling)
 {
     _playHandling = handling;
 }