uenum ue4

Solutions on MaxInterview for uenum ue4 by the best coders in the world

showing results for - "uenum ue4"
Josué
26 Apr 2020
1 UENUM(BlueprintType)
2 enum class GroundDirection : uint8 {
3      DOWN = 0 UMETA(DisplayName = "DOWN"),
4      LEFT = 1  UMETA(DisplayName = "LEFT"),
5      UP = 2     UMETA(DisplayName = "UP"),
6      RIGHT = 3 
7 }