Engine
Class VehiclePart

source: C:\XIII\Engine\Classes\VehiclePart.uc
Core.Object
   |
   +--Engine.Actor
      |
      +--Engine.VehiclePart
Direct Known Subclasses:XIIIWheel

class VehiclePart
extends Engine.Actor


Variables
 bool bUpdating
           set true if currently updating


Function Summary
 void Activate(bool bActive)
 void Update(float DeltaTime)
     
// Update() called each tick by the Vehicle which owns this vehiclepart



Source Code


00001	class VehiclePart extends Actor
00002		native
00003		abstract
00004		placeable;
00005	
00006	var bool bUpdating;		// set true if currently updating
00007	
00008	// Update() called each tick by the Vehicle which owns this vehiclepart
00009	function Update(float DeltaTime);
00010	
00011	function Activate(bool bActive);
00012	
00013	defaultproperties
00014	{
00015	}

End Source Code