You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Before: 3648 unity files Total CPU Time: 47886.140625 s Total time in Parallel executor: 498.81 seconds After: 3548 unity files Total CPU Time: 46643.828125 s Total time in Parallel executor: 486.06 seconds #jira #preflight [CL 22173263 by marc audy in ue5-main branch]
42 lines
1.5 KiB
C++
42 lines
1.5 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "GeometryCollection/GeometryCollectionDebugDrawActor.h"
|
|
|
|
#include "GeometryCollection/GeometryCollection.h"
|
|
#include "GeometryCollection/GeometryCollectionParticlesData.h"
|
|
#include "GeometryCollection/GeometryCollectionComponent.h"
|
|
#include "GeometryCollection/GeometryCollectionActor.h"
|
|
|
|
#include "DrawDebugHelpers.h"
|
|
#include "Debug/DebugDrawService.h"
|
|
#include "Engine/Engine.h"
|
|
#include "Engine/Canvas.h"
|
|
#include "CanvasItem.h"
|
|
#include "HAL/IConsoleManager.h"
|
|
#include "EngineUtils.h"
|
|
#include "UObject/ConstructorHelpers.h"
|
|
#include "Components/BillboardComponent.h"
|
|
#include "GenericPlatform/GenericPlatformMath.h"
|
|
#include "HAL/IConsoleManager.h"
|
|
#include "PBDRigidsSolver.h"
|
|
#include "PhysicsSolver.h" // #if TODO_REIMPLEMENT_GET_RIGID_PARTICLES
|
|
#include "GeometryCollection/GeometryCollectionDebugDrawComponent.h"
|
|
|
|
#include UE_INLINE_GENERATED_CPP_BY_NAME(GeometryCollectionDebugDrawActor)
|
|
|
|
DEFINE_LOG_CATEGORY_STATIC(LogGeometryCollectionDebugDrawActor, Log, All);
|
|
|
|
PRAGMA_DISABLE_DEPRECATION_WARNINGS
|
|
FString FGeometryCollectionDebugDrawActorSelectedRigidBody::GetSolverName() const
|
|
{
|
|
return !Solver ? FName(NAME_None).ToString() : Solver->GetName();
|
|
}
|
|
|
|
AGeometryCollectionDebugDrawActor::AGeometryCollectionDebugDrawActor(const FObjectInitializer& ObjectInitializer)
|
|
: Super(ObjectInitializer)
|
|
{
|
|
PrimaryActorTick.bCanEverTick = false;
|
|
PrimaryActorTick.bTickEvenWhenPaused = false;
|
|
}
|
|
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|