17 lines
424 B
C++
17 lines
424 B
C++
// Copyright 2025 https://yuewu.dev/en All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "GMS_AnimLayer.h"
|
|
#include "GMS_AnimLayer_Additive.generated.h"
|
|
|
|
/**
|
|
* Base class for additive animation layer settings.
|
|
* 附加动画层设置的基类。
|
|
*/
|
|
UCLASS(Abstract, Blueprintable)
|
|
class GENERICMOVEMENTSYSTEM_API UGMS_AnimLayerSetting_Additive : public UGMS_AnimLayerSetting
|
|
{
|
|
GENERATED_BODY()
|
|
}; |