NiagaraToolsets.NiagaraToolset_Info¶
Niagara Toolset for general Niagara information and guidance.
Provides: - Enum value lookups - General usage information
Call these functions when you need context about Niagara types.
1 tool(s).
NiagaraToolsets.NiagaraToolset_Info.UEnum_Info¶
Returns information about a UEnum and all its values. ALWAYS call this when working with a UEnum type to see valid values.
Input schema
{
"properties": {
"enum": {
"description": "Represents a reference to a UObject or UClass.",
"properties": {
"refPath": {
"description": "The reference stored as a soft path string.",
"type": "string"
}
},
"required": [
"refPath"
],
"title": "/Script/CoreUObject.Enum",
"type": "object"
}
},
"required": [
"enum"
],
"type": "object"
}
Output schema
{
"properties": {
"returnValue": {
"type": "string"
}
},
"required": [
"returnValue"
],
"type": "object"
}