Skip to content

UENUM type

The uEnum macro

uEnum EMyEnumCreatedInDsl:
(BlueprintType)
WhateverEnumValue
SomethingElse

Creating manually

const ueEnumType = UEType(name: "EMyTestEnum", kind: uetEnum,
fields: @[
UEField(kind: uefEnumVal, name: "TestValue"),
UEField(kind: uefEnumVal, name: "TestValue2")
]
)
genType(ueEnumType)