// 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. 右移。 };