17 lines
454 B
C++
17 lines
454 B
C++
// Copyright 2025 https://yuewu.dev/en All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "GMS_AnimLayer.h"
|
|
#include "GMS_AnimLayer_SkeletalControls.generated.h"
|
|
|
|
/**
|
|
* Base class for skeletal control animation layer settings.
|
|
* 骨骼控制动画层设置的基类。
|
|
*/
|
|
UCLASS(Abstract, Blueprintable)
|
|
class GENERICMOVEMENTSYSTEM_API UGMS_AnimLayerSetting_SkeletalControls : public UGMS_AnimLayerSetting
|
|
{
|
|
GENERATED_BODY()
|
|
}; |