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 |
/** * when this component gets triggered, it calls its owner UTBot's ExecuteWhatToDoNext() in its next tick. * This is so the AI's state code, timers, etc happen in TG_PreAsyncWork while the decision logic happens * in TG_DuringAsyncWork for improved parallelism ("during async work" executes in parallel with physics update) * * Copyright 1998-2011 Epic Games, Inc. All Rights Reserved. */ class UDKAIDecisionComponent extends ActorComponent native; /** bTriggered is true while bot is waiting for DecisionComponent to call back event ExecuteWhatToDoNext() */ var bool bTriggered; cpptext { virtual void Tick(FLOAT DeltaTime); } defaultproperties { TickGroup=TG_DuringAsyncWork } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |