diff --git a/Elistria_Calling/Config/DefaultEngine.ini b/Elistria_Calling/Config/DefaultEngine.ini index 80c21cd..5746726 100644 --- a/Elistria_Calling/Config/DefaultEngine.ini +++ b/Elistria_Calling/Config/DefaultEngine.ini @@ -175,3 +175,6 @@ EndpointSettings=(bEnableLogging=False,PurgeProcessedMessageDelaySeconds=30,Remo +ClassRedirects=(OldName="/Script/Elistria_Calling.MagickPlayerState",NewName="/Script/Elistria_Calling.MagickPlayerState") +FunctionRedirects=(OldName="/Script/Elistria_Calling.PlayerGameplayAbilitiesDataAsset.GetAllMapings",NewName="/Script/Elistria_Calling.PlayerGameplayAbilitiesDataAsset.GetAllMappings") +[/Script/AppleARKit.AppleARKitSettings] +bRequireARKitSupport=True + diff --git a/Elistria_Calling/Elistria_Calling.uproject b/Elistria_Calling/Elistria_Calling.uproject index 7a13f78..71793b1 100644 --- a/Elistria_Calling/Elistria_Calling.uproject +++ b/Elistria_Calling/Elistria_Calling.uproject @@ -317,6 +317,202 @@ { "Name": "SteamSockets", "Enabled": true + }, + { + "Name": "AnimationLocomotionLibrary", + "Enabled": true + }, + { + "Name": "AnimationWarping", + "Enabled": true + }, + { + "Name": "AnimatorKit", + "Enabled": true + }, + { + "Name": "GeneSplicer", + "Enabled": true + }, + { + "Name": "CurveExpression", + "Enabled": true + }, + { + "Name": "HairStrandsMutable", + "Enabled": true + }, + { + "Name": "LiveLinkControlRig", + "Enabled": true + }, + { + "Name": "Locomotor", + "Enabled": true + }, + { + "Name": "MotionTrajectory", + "Enabled": true + }, + { + "Name": "PerformanceCaptureCore", + "Enabled": true + }, + { + "Name": "PerformanceCaptureWorkflow", + "Enabled": true + }, + { + "Name": "PoseSearch", + "Enabled": true + }, + { + "Name": "RigMapper", + "Enabled": true + }, + { + "Name": "RigLogicMutable", + "Enabled": true + }, + { + "Name": "MovieSceneAnimMixer", + "Enabled": true + }, + { + "Name": "SkeletalMeshMorphTargetEditingTools", + "Enabled": true + }, + { + "Name": "TrajectoryTools", + "Enabled": true + }, + { + "Name": "SkeletonTemplateFramework", + "Enabled": true + }, + { + "Name": "AnimNext", + "Enabled": true + }, + { + "Name": "AnimNextWarping", + "Enabled": true + }, + { + "Name": "AnimNextStateTree", + "Enabled": true + }, + { + "Name": "AnimNextPoseSearch", + "Enabled": true + }, + { + "Name": "AnimNextControlRig", + "Enabled": true + }, + { + "Name": "AnimNextChooser", + "Enabled": true + }, + { + "Name": "AnimNextAnimGraph", + "Enabled": true + }, + { + "Name": "Chooser", + "Enabled": true + }, + { + "Name": "DNACalib", + "Enabled": true + }, + { + "Name": "EvaluationNotifies", + "Enabled": true + }, + { + "Name": "HierarchyTableAnimation", + "Enabled": true + }, + { + "Name": "HierarchyTable", + "Enabled": true + }, + { + "Name": "LiveLinkHub", + "Enabled": true + }, + { + "Name": "LiveLinkCurveDebugUI", + "Enabled": true + }, + { + "Name": "MutablePopulation", + "Enabled": true + }, + { + "Name": "InteractionInterface", + "Enabled": true + }, + { + "Name": "MetaHumanLiveLink", + "Enabled": true + }, + { + "Name": "MetaHumanCharacter", + "Enabled": true + }, + { + "Name": "MetaHumanCoreTech", + "Enabled": true, + "SupportedTargetPlatforms": [ + "Win64", + "Linux" + ] + }, + { + "Name": "MetaHumanCalibrationProcessing", + "Enabled": true, + "SupportedTargetPlatforms": [ + "Win64", + "Linux" + ] + }, + { + "Name": "MetaHuman", + "Enabled": true, + "SupportedTargetPlatforms": [ + "Win64", + "Linux" + ] + }, + { + "Name": "MutableClothing", + "Enabled": true + }, + { + "Name": "CelestialVault", + "Enabled": true + }, + { + "Name": "DaySequence", + "Enabled": true + }, + { + "Name": "ChaosOutfitAsset", + "Enabled": true + }, + { + "Name": "DirectoryPlaceholder", + "Enabled": true + }, + { + "Name": "LiveLinkCamera", + "Enabled": true + }, + { + "Name": "LiveLinkInputDevice", + "Enabled": true } ], "TargetPlatforms": [ diff --git a/Elistria_Calling/Source/Elistria_Calling/Private/Attributes/ElistriaAttributesSet.cpp b/Elistria_Calling/Source/Elistria_Calling/Private/Attributes/ElistriaAttributesSet.cpp new file mode 100644 index 0000000..defe99c --- /dev/null +++ b/Elistria_Calling/Source/Elistria_Calling/Private/Attributes/ElistriaAttributesSet.cpp @@ -0,0 +1,6 @@ +// Fill out your copyright notice in the Description page of Project Settings. + + +#include "Attributes/ElistriaAttributesSet.h" + + diff --git a/Elistria_Calling/Source/Elistria_Calling/Public/Attributes/ElistriaAttributesSet.h b/Elistria_Calling/Source/Elistria_Calling/Public/Attributes/ElistriaAttributesSet.h new file mode 100644 index 0000000..e32667e --- /dev/null +++ b/Elistria_Calling/Source/Elistria_Calling/Public/Attributes/ElistriaAttributesSet.h @@ -0,0 +1,17 @@ +// Fill out your copyright notice in the Description page of Project Settings. + +#pragma once + +#include "CoreMinimal.h" +#include "ElistriaAttributeSetBase.h" +#include "ElistriaAttributesSet.generated.h" + +/** + * + */ +UCLASS() +class ELISTRIA_CALLING_API UElistriaAttributesSet : public UElistriaAttributeSetBase +{ + GENERATED_BODY() + +};