| 51 | AAMjManager* AAMjManager::Instance = nullptr; |
| 52 | |
| 53 | AAMjManager::AAMjManager() |
| 54 | { |
| 55 | PrimaryActorTick.bCanEverTick = true; |
| 56 | |
| 57 | PhysicsEngine = CreateDefaultSubobject<UMjPhysicsEngine>(TEXT("PhysicsEngine")); |
| 58 | DebugVisualizer = CreateDefaultSubobject<UMjDebugVisualizer>(TEXT("DebugVisualizer")); |
| 59 | NetworkManager = CreateDefaultSubobject<UMjNetworkManager>(TEXT("NetworkManager")); |
| 60 | InputHandler = CreateDefaultSubobject<UMjInputHandler>(TEXT("InputHandler")); |
| 61 | Perturbation = CreateDefaultSubobject<UMjPerturbation>(TEXT("Perturbation")); |
| 62 | } |
| 63 | |
| 64 | // --- Forwarding shims: PreCompile, PostCompile, Compile, ApplyOptions --- |
| 65 | // Actual implementations live in UMjPhysicsEngine. |
nothing calls this directly
no outgoing calls
no test coverage detected