Exemple #1
0
 public void Draw()
 {
     _trail.Draw(annotation);
     Drawing.DrawBasic3dSphericalVehicle(this, Color);
 }
 internal void Draw()
 {
     Drawing.DrawBasic2dCircularVehicle(this, Color.GhostWhite);
     _trail.Draw(annotation);
 }
 // draw into the scene
 public void Draw()
 {
     Drawing.DrawBasic2dCircularVehicle(this, Color.Gray);
     _trail.Draw(annotation);
 }
Exemple #4
0
 // draw this character/vehicle into the scene
 public void Draw()
 {
     Drawing.DrawBasic2dCircularVehicle(this, b_ImTeamA ? Color.Red : Color.Blue);
     trail.Draw(Annotation.drawer);
 }
Exemple #5
0
 // draw into the scene
 public void Draw()
 {
     Drawing.DrawBasic2dCircularVehicle(this, BodyColor);
     Trail.Draw(annotation);
 }
Exemple #6
0
 // draw into the scene
 public void Draw()
 {
     Drawing.DrawBasic2dCircularVehicle(this, bodyColor);
     trail.Draw(Annotation.drawer);
 }
Exemple #7
0
 // draw this character/vehicle into the scene
 public void Draw()
 {
     Drawing.DrawBasic2dCircularVehicle(this, _imTeamA ? Color.Red : Color.Blue);
     _trail.Draw(annotation);
 }