18 lines
629 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# GetRestrictedEnumValues
- **功能描述:** 指定一个函数来指定枚举属性值的哪些枚举选项是禁用的
- **使用位置:** UPROPERTY
- **引擎模块:** Enum Property
- **元数据类型:** string="abc"
- **限制类型:** TArray<FString> FuncName() const;
- **关联项:** [ValidEnumValues](ValidEnumValues/ValidEnumValues.md)
- **常用程度:** ★★★
Restricted和Invalid的区别是
Invalid会隐藏掉该选项值
Restricted依然会显示该选项值只是会灰调不可选。
指定的函数名字必须是一个UFUNCTION函数这样才能通过名字找到该函数。