Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 |
/** * Copyright 1998-2008 Epic Games, Inc. All Rights Reserved. */ class ActorComponent extends Component native noexport abstract; var native transient const pointer Scene{FSceneInterface}; var transient const Actor Owner; var native transient const bool bAttached; var const bool bTickInEditor; /** Is this component in need of an update? */ var transient const bool bNeedsReattach; /** Is this component's transform in need of an update? */ var transient const bool bNeedsUpdateTransform; /** The ticking group this component belongs to */ var const ETickingGroup TickGroup; /** Changes the ticking group for this component */ native final function SetTickGroup(ETickingGroup NewTickGroup); /** * Sets whether or not the physics for this object should be 'fixed' (ie kinematic) or allowed to move with dynamics. * If bFixed is true, all bodies within this component will be fixed. * If bFixed is false, bodies will be set back to the default defined by their BodySetup. */ native final function SetComponentRBFixed(bool bFixed); /** force this component to be updated right now * component must be directly attached to its Owner (not attached to another component) * @param bTransformOnly - if true, only update transform, otherwise do a full reattachment */ native final function ForceUpdate(bool bTransformOnly); defaultproperties { TickGroup=TG_DuringAsyncWork Name="Default__ActorComponent" ObjectArchetype=Component'Core.Default__Component' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |