Files
UnrealEngine/Engine/Source/Editor/UnrealEd/Public/PhysicsAssetGenerationSettings.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

21 lines
482 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "PhysicsAssetUtils.h"
#include "PhysicsAssetGenerationSettings.generated.h"
UCLASS(MinimalAPI, config=EditorPerProjectUserSettings)
class UPhysicsAssetGenerationSettings : public UObject
{
GENERATED_BODY()
public:
UPhysicsAssetGenerationSettings()
{
}
UPROPERTY(EditAnywhere, Category="Body Creation", meta=(ShowOnlyInnerProperties))
FPhysAssetCreateParams CreateParams;
};