Checking everything in
This commit is contained in:
@@ -115,8 +115,12 @@ void UlxTangible::GetCurrentAnimation(AActor *target, FlxAnimationStep &step) {
|
||||
step = GetActorTangible(target)->AnimTracker.GetCurrentAnimation();
|
||||
}
|
||||
|
||||
void UlxTangible::FinishedAnimation(AActor *target, const FlxAnimationStep &step) {
|
||||
GetActorTangible(target)->AnimTracker.FinishedAnimation(step.Hash);
|
||||
void UlxTangible::FinishedAnimation(AActor *target, const FlxAnimationStep &step, bool autoxyz, bool autofacing, bool autoplane) {
|
||||
UlxTangible *tan = GetActorTangible(target);
|
||||
if (autoxyz) step.AutoUpdateXYZ(target);
|
||||
if (autofacing) step.AutoUpdateFacing(target);
|
||||
if (autoplane) step.AutoUpdatePlane(&(tan->Plane));
|
||||
tan->AnimTracker.FinishedAnimation(step.Hash);
|
||||
}
|
||||
|
||||
FString UlxTangible::GetTangiblePlane(AActor* target) {
|
||||
|
||||
Reference in New Issue
Block a user