Various fixes

This commit is contained in:
Wojtek Figat
2024-02-16 12:29:59 +01:00
parent c7a449fe1c
commit f0f8da3c09
4 changed files with 42 additions and 4 deletions

View File

@@ -91,6 +91,13 @@ API_STRUCT(InBuild, Template, MarshalAs=StringAnsi) struct FLAXENGINE_API Behavi
return false;
}
BehaviorKnowledgeSelector() = default;
BehaviorKnowledgeSelector(const StringAnsi& other)
{
Path = other;
}
BehaviorKnowledgeSelector& operator=(const StringAnsiView& other) noexcept
{
Path = other;