第一次提交

This commit is contained in:
不明不惑
2026-03-03 01:23:02 +08:00
commit 3e434877e8
1053 changed files with 102411 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
// Copyright 2025 https://yuewu.dev/en All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "UObject/Object.h"
#include "GMS_LocomotionEnumLibrary.generated.h"
/**
* Defines four-directional movement directions.
* 定义四方向移动方向。
*/
UENUM(BlueprintType)
enum class EGMS_MovementDirection : uint8
{
Forward, // Forward movement. 前进移动。
Backward, // Backward movement. 后退移动。
Left, // Left movement. 左移。
Right // Right movement. 右移。
};
/**
* Defines eight-directional movement directions.
* 定义八方向移动方向。
*/
UENUM(BlueprintType)
enum class EGMS_MovementDirection_8Way : uint8
{
Forward, // Forward movement. 前进移动。
ForwardLeft, // Forward-left movement. 前左移动。
ForwardRight, // Forward-right movement. 前右移动。
Backward, // Backward movement. 后退移动。
BackwardLeft, // Backward-left movement. 后左移动。
BackwardRight, // Backward-right movement. 后右移动。
Left, // Left movement. 左移。
Right // Right movement. 右移。
};