ArticyXImporter
ArticyXImporter for Unreal Engine
Loading...
Searching...
No Matches
ExpressoScriptsGenerator.h
1//
2// Copyright (c) 2023 articy Software GmbH & Co. KG. All rights reserved.
3//
4
5#pragma once
6
7#include "ArticyImportData.h"
8
14{
15public:
24 static void GenerateCode(const UArticyImportData* Data, FString& OutFile);
25
34 static FString GetFilename(const UArticyImportData* Data);
35};
Generates expresso scripts and methods for Articy import data.
Definition ExpressoScriptsGenerator.h:14
static FString GetFilename(const UArticyImportData *Data)
Returns the filename of the generated expresso scripts class (with extension).
Definition ExpressoScriptsGenerator.cpp:253
static void GenerateCode(const UArticyImportData *Data, FString &OutFile)
Generates code for the Articy expresso scripts class.
Definition ExpressoScriptsGenerator.cpp:205
Definition ArticyImportData.h:411