Fixed file saving path for BehaviorClass generation + more node updates

Signed-off-by: lsemp3d <58790905+lsemp3d@users.noreply.github.com>
This commit is contained in:
lsemp3d
2021-11-18 16:23:55 -08:00
parent a0ca98238f
commit 0ecfb1b557
3 changed files with 145 additions and 2 deletions
@@ -327,7 +327,8 @@ namespace ScriptCanvasEditorTools
translationRoot.m_entries.push_back(entry);
AZStd::string fileName = AZStd::string::format("Classes/%s", className.c_str());
AZStd::string sanitizedFilename = GraphCanvas::TranslationKey::Sanitize(className);
AZStd::string fileName = AZStd::string::format("Classes/%s", sanitizedFilename.c_str());
SaveJSONData(fileName, translationRoot);