mirror of https://github.com/AxioDL/metaforce.git
Fix YAML faux pas in SpecialFunction
This commit is contained in:
parent
777419ad4e
commit
770c3e6395
|
@ -221,9 +221,9 @@ bool MLVL::Cook(const hecl::ProjectPath& outPath, const hecl::ProjectPath& inPat
|
|||
else if (obj->type == 0x3A)
|
||||
{
|
||||
SpecialFunction& specialFunc = static_cast<SpecialFunction&>(*obj);
|
||||
if (specialFunc.type == ESpecialFunctionType::CinematicSkip)
|
||||
if (specialFunc.function == ESpecialFunctionType::CinematicSkip)
|
||||
savw.skippableCutscenes.push_back(specialFunc.id);
|
||||
else if (specialFunc.type == ESpecialFunctionType::ScriptLayerController)
|
||||
else if (specialFunc.function == ESpecialFunctionType::ScriptLayerController)
|
||||
{
|
||||
savw.layers.emplace_back();
|
||||
SAVWCommon::Layer& layer = savw.layers.back();
|
||||
|
|
|
@ -15,7 +15,7 @@ struct SpecialFunction : IScriptObject
|
|||
String<-1> name;
|
||||
Value<atVec3f> location;
|
||||
Value<atVec3f> orientation;
|
||||
Value<ESpecialFunctionType> type;
|
||||
Value<ESpecialFunctionType> function;
|
||||
String<-1> unknown1;
|
||||
Value<float> unknown2;
|
||||
Value<float> unknown3;
|
||||
|
|
Loading…
Reference in New Issue