Created
February 13, 2025 02:19
-
-
Save ialex32x/f07abd016807d1ea71680cef4b4bb4e8 to your computer and use it in GitHub Desktop.
How to define a PropertyInfo for filepath array
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PropertyInfo PackagingIncludeFiles; | |
PackagingIncludeFiles.type = Variant::ARRAY; | |
PackagingIncludeFiles.name = "MyPropertyName"; | |
PackagingIncludeFiles.hint = PROPERTY_HINT_ARRAY_TYPE; | |
PackagingIncludeFiles.hint_string = vformat("%s/%s:%s", Variant::STRING, PROPERTY_HINT_FILE, "*.abc,*.xyz"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment