2025-01-06 21:29:37 +00:00
|
|
|
|
// © 2024 Long Ly. All rights reserved. Any unauthorized use, reproduction, or distribution of this trademark is strictly prohibited and may result in legal action.
|
|
|
|
|
|
|
|
|
|
|
2025-01-09 23:05:57 +00:00
|
|
|
|
#include "DataAssets/OLSPawnDataAsset.h"
|
2025-01-06 21:29:37 +00:00
|
|
|
|
|
2025-01-09 23:05:57 +00:00
|
|
|
|
UOLSPawnDataAsset::UOLSPawnDataAsset(const FObjectInitializer& objectInitializer)
|
2025-01-06 21:29:37 +00:00
|
|
|
|
: Super(objectInitializer)
|
|
|
|
|
{
|
|
|
|
|
PawnClass = nullptr;
|
|
|
|
|
TagRelationshipMapping = nullptr;
|
|
|
|
|
InputConfig = nullptr;
|
|
|
|
|
|
|
|
|
|
// @Todo: implement DefaultCamera mode here.
|
|
|
|
|
// DefaultCameraMode = nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-09 23:05:57 +00:00
|
|
|
|
FString UOLSPawnDataAsset::GetIdentifierString() const
|
2025-01-06 21:29:37 +00:00
|
|
|
|
{
|
|
|
|
|
return GetPrimaryAssetId().ToString();
|
|
|
|
|
}
|