diff --git a/src/Core/Resource/Cooker/CTemplateWriter.cpp b/src/Core/Resource/Cooker/CTemplateWriter.cpp index 1a45bce1..61f4a107 100644 --- a/src/Core/Resource/Cooker/CTemplateWriter.cpp +++ b/src/Core/Resource/Cooker/CTemplateWriter.cpp @@ -5,6 +5,7 @@ #include using namespace tinyxml2; +TString CTemplateWriter::smTemplatesDir = "../templates/"; CTemplateWriter::CTemplateWriter() { @@ -14,12 +15,14 @@ void CTemplateWriter::SaveAllTemplates() { // Create directory std::list MasterList = CMasterTemplate::GetMasterList(); - TString Out = "../templates/"; - boost::filesystem::create_directory(Out.ToStdString()); + boost::filesystem::create_directory(smTemplatesDir.ToStdString()); + + // Resave property list + SavePropertyList(); // Resave master templates for (auto it = MasterList.begin(); it != MasterList.end(); it++) - SaveGameTemplates(*it, Out); + SaveGameTemplates(*it); // Resave game list XMLDocument GameList; @@ -31,6 +34,10 @@ void CTemplateWriter::SaveAllTemplates() pBase->SetAttribute("version", 4); GameList.LinkEndChild(pBase); + XMLElement *pProperties = GameList.NewElement("properties"); + pProperties->SetText("Properties.xml"); + pBase->LinkEndChild(pProperties); + for (auto it = MasterList.begin(); it != MasterList.end(); it++) { CMasterTemplate *pMaster = *it; @@ -52,20 +59,24 @@ void CTemplateWriter::SaveAllTemplates() pGame->LinkEndChild(pTempPath); } - TString GameListName = Out + "GameList.xml"; + TString GameListName = smTemplatesDir + "GameList.xml"; GameList.SaveFile(*GameListName); } -void CTemplateWriter::SaveGameTemplates(CMasterTemplate *pMaster, const TString& rkDir) +void CTemplateWriter::SaveGameTemplates(CMasterTemplate *pMaster) { // Create directory - TString OutFile = rkDir + pMaster->mSourceFile; + TString OutFile = smTemplatesDir + pMaster->mSourceFile; TString OutDir = OutFile.GetFileDirectory(); boost::filesystem::create_directory(OutDir.ToStdString()); // Resave script templates for (auto it = pMaster->mTemplates.begin(); it != pMaster->mTemplates.end(); it++) - SaveScriptTemplate(it->second, OutDir); + SaveScriptTemplate(it->second); + + // Resave struct templates + for (auto it = pMaster->mStructTemplates.begin(); it != pMaster->mStructTemplates.end(); it++) + SaveStructTemplate(it->second, pMaster); // Resave master template XMLDocument Master; @@ -77,16 +88,6 @@ void CTemplateWriter::SaveGameTemplates(CMasterTemplate *pMaster, const TString& pBase->SetAttribute("version", 4); Master.LinkEndChild(pBase); - // Write property list - if (!pMaster->smPropertyNames.empty()) - { - SavePropertyList(OutDir); - - XMLElement *pPropList = Master.NewElement("properties"); - pPropList->SetText("Properties.xml"); - pBase->LinkEndChild(pPropList); - } - // Write versions if (!pMaster->mGameVersions.empty()) { @@ -97,7 +98,7 @@ void CTemplateWriter::SaveGameTemplates(CMasterTemplate *pMaster, const TString& { XMLElement *pVersion = Master.NewElement("version"); pVersion->SetText(*(*it)); - pBase->LinkEndChild(pVersion); + pVersionsBlock->LinkEndChild(pVersion); } } @@ -147,7 +148,7 @@ void CTemplateWriter::SaveGameTemplates(CMasterTemplate *pMaster, const TString& Master.SaveFile(*OutFile); } -void CTemplateWriter::SavePropertyList(const TString& rkDir) +void CTemplateWriter::SavePropertyList() { // Create XML XMLDocument List; @@ -171,16 +172,18 @@ void CTemplateWriter::SavePropertyList(const TString& rkDir) pBase->LinkEndChild(pElem); } - TString OutFile = rkDir + "Properties.xml"; + TString OutFile = smTemplatesDir + "Properties.xml"; List.SaveFile(*OutFile); } -void CTemplateWriter::SaveScriptTemplate(CScriptTemplate *pTemp, const TString& rkDir) +void CTemplateWriter::SaveScriptTemplate(CScriptTemplate *pTemp) { + CMasterTemplate *pMaster = pTemp->MasterTemplate(); + // Create directory - TString OutFile = rkDir + pTemp->mSourceFile; - TString outDir = OutFile.GetFileDirectory(); - boost::filesystem::create_directory(*outDir); + TString OutFile = smTemplatesDir + pMaster->GetDirectory() + pTemp->mSourceFile; + TString OutDir = OutFile.GetFileDirectory(); + boost::filesystem::create_directory(*OutDir); // Create new document XMLDocument ScriptXML; @@ -199,7 +202,14 @@ void CTemplateWriter::SaveScriptTemplate(CScriptTemplate *pTemp, const TString& pRoot->LinkEndChild(pName); // Write properties - SaveProperties(&ScriptXML, pRoot, pTemp->mpBaseStruct, pTemp->MasterTemplate(), rkDir); + SaveProperties(&ScriptXML, pRoot, pTemp->mpBaseStruct, pMaster); + + // States/Messages [todo] + XMLElement *pStates = ScriptXML.NewElement("states"); + pRoot->LinkEndChild(pStates); + + XMLElement *pMessages = ScriptXML.NewElement("messages"); + pRoot->LinkEndChild(pMessages); // Write editor properties XMLElement *pEditor = ScriptXML.NewElement("editor"); @@ -248,12 +258,12 @@ void CTemplateWriter::SaveScriptTemplate(CScriptTemplate *pTemp, const TString& } s32 Force = -1; - if (it->AssetSource == CScriptTemplate::SEditorAsset::eAnimParams) + if (it->AssetType == CScriptTemplate::SEditorAsset::eAnimParams) Force = it->ForceNodeIndex; XMLElement *pAsset = ScriptXML.NewElement(*Type); pAsset->SetAttribute("source", *Source); - if (Force >= 0) pAsset->SetAttribute("force", std::to_string(Force).c_str()); + if (Force >= 0) pAsset->SetAttribute("force", *TString::FromInt32(Force, 0, 10)); pAsset->SetText(*it->AssetLocation); pAssets->LinkEndChild(pAsset); } @@ -314,7 +324,7 @@ void CTemplateWriter::SaveScriptTemplate(CScriptTemplate *pTemp, const TString& // Write conditions for (auto it = pTemp->mVolumeConditions.begin(); it != pTemp->mVolumeConditions.end(); it++) { - // Value should be an integer, or a boolean condition? + // Value should be an integer, or a boolean condition TString StrVal; if (pProp->Type() == eBoolProperty) @@ -335,10 +345,10 @@ void CTemplateWriter::SaveScriptTemplate(CScriptTemplate *pTemp, const TString& ScriptXML.SaveFile(*OutFile); } -void CTemplateWriter::SaveStructTemplate(CStructTemplate *pTemp, CMasterTemplate *pMaster, const TString& rkDir) +void CTemplateWriter::SaveStructTemplate(CStructTemplate *pTemp, CMasterTemplate *pMaster) { // Create directory - TString OutFile = rkDir + pTemp->mSourceFile; + TString OutFile = smTemplatesDir + pMaster->GetDirectory() + pTemp->mSourceFile; TString OutDir = OutFile.GetFileDirectory(); TString Name = OutFile.GetFileName(false); boost::filesystem::create_directory(OutDir.ToStdString()); @@ -354,14 +364,14 @@ void CTemplateWriter::SaveStructTemplate(CStructTemplate *pTemp, CMasterTemplate pRoot->SetAttribute("type", (pTemp->IsSingleProperty() ? "single" : "multi")); StructXML.LinkEndChild(pRoot); - SaveProperties(&StructXML, pRoot, pTemp, pMaster, rkDir); + SaveProperties(&StructXML, pRoot, pTemp, pMaster); StructXML.SaveFile(*OutFile); } -void CTemplateWriter::SaveEnumTemplate(CEnumTemplate *pTemp, const TString& rkDir) +void CTemplateWriter::SaveEnumTemplate(CEnumTemplate *pTemp, CMasterTemplate *pMaster) { // Create directory - TString OutFile = rkDir + pTemp->mSourceFile; + TString OutFile = smTemplatesDir + pMaster->GetDirectory() + pTemp->mSourceFile; TString OutDir = OutFile.GetFileDirectory(); TString Name = OutFile.GetFileName(false); boost::filesystem::create_directory(*OutDir); @@ -380,10 +390,10 @@ void CTemplateWriter::SaveEnumTemplate(CEnumTemplate *pTemp, const TString& rkDi EnumXML.SaveFile(*OutFile); } -void CTemplateWriter::SaveBitfieldTemplate(CBitfieldTemplate *pTemp, const TString& rkDir) +void CTemplateWriter::SaveBitfieldTemplate(CBitfieldTemplate *pTemp, CMasterTemplate *pMaster) { // Create directory - TString OutFile = rkDir + pTemp->mSourceFile; + TString OutFile = smTemplatesDir + pMaster->GetDirectory() + pTemp->mSourceFile; TString OutDir = OutFile.GetFileDirectory(); TString Name = pTemp->mSourceFile.GetFileName(false); boost::filesystem::create_directory(*OutDir); @@ -402,7 +412,7 @@ void CTemplateWriter::SaveBitfieldTemplate(CBitfieldTemplate *pTemp, const TStri BitfieldXML.SaveFile(*OutFile); } -void CTemplateWriter::SaveProperties(XMLDocument *pDoc, XMLElement *pParent, CStructTemplate *pTemp, CMasterTemplate *pMaster, const TString& rkDir) +void CTemplateWriter::SaveProperties(XMLDocument *pDoc, XMLElement *pParent, CStructTemplate *pTemp, CMasterTemplate *pMaster) { // Create base element XMLElement *pPropsBlock = pDoc->NewElement("properties"); @@ -429,20 +439,15 @@ void CTemplateWriter::SaveProperties(XMLDocument *pDoc, XMLElement *pParent, CSt else pElem = pDoc->NewElement("property"); + pPropsBlock->LinkEndChild(pElem); + // Set common property parameters, starting with ID pElem->SetAttribute("ID", *StrID); - // Type - if (pProp->Type() == eStructProperty) - pElem->SetAttribute("type", (static_cast(pProp)->mIsSingleProperty ? "single" : "multi")); - - else if (TString(pElem->Name()) == "property") - pElem->SetAttribute("type", *PropEnumToPropString(pProp->Type())); - // Name TString Name = pProp->Name(); - if (pMaster->GetGame() >= eEchoesDemo) + if (pMaster->GetGame() >= eEchoesDemo && ID > 0xFF) { TString MasterName = CMasterTemplate::GetPropertyName(ID); @@ -453,14 +458,53 @@ void CTemplateWriter::SaveProperties(XMLDocument *pDoc, XMLElement *pParent, CSt else pElem->SetAttribute("name", *Name); + // Type + if (pProp->Type() == eStructProperty) + { + CStructTemplate *pStruct = static_cast(pProp); + + if (pStruct->mSourceFile.IsEmpty()) + pElem->SetAttribute("type", (pStruct->mIsSingleProperty ? "single" : "multi")); + } + + else if (TString(pElem->Name()) == "property") + pElem->SetAttribute("type", *PropEnumToPropString(pProp->Type())); + + // Versions + u32 NumVersions = pProp->mAllowedVersions.size(); + + if (NumVersions > 0 && NumVersions != pMaster->mGameVersions.size()) + { + XMLElement *pVersions = pDoc->NewElement("versions"); + pElem->LinkEndChild(pVersions); + + for (u32 iVer = 0; iVer < pMaster->mGameVersions.size(); iVer++) + { + if (pProp->IsInVersion(iVer)) + { + XMLElement *pVersion = pDoc->NewElement("version"); + pVersion->SetText(*pMaster->mGameVersions[iVer]); + pVersions->LinkEndChild(pVersion); + } + } + } + // Default - if (pProp->CanHaveDefault()) + if (pProp->CanHaveDefault() && pMaster->GetGame() >= eEchoesDemo) { XMLElement *pDefault = pDoc->NewElement("default"); pDefault->SetText(*pProp->DefaultToString()); pElem->LinkEndChild(pDefault); } + // Description + if (!pProp->Description().IsEmpty()) + { + XMLElement *pDesc = pDoc->NewElement("description"); + pDesc->SetText(*pProp->Description()); + pElem->LinkEndChild(pDesc); + } + // Range if (pProp->IsNumerical() && pProp->HasValidRange()) { @@ -502,7 +546,8 @@ void CTemplateWriter::SaveProperties(XMLDocument *pDoc, XMLElement *pParent, CSt for (auto it = rkExtensions.begin(); it != rkExtensions.end(); it++) ExtensionsString += *it + ","; - ExtensionsString.ChopBack(1); // Remove extra comma + ExtensionsString = ExtensionsString.ChopBack(1); // Remove extra comma + if (ExtensionsString.IsEmpty()) ExtensionsString = "UNKN"; pElem->SetAttribute("extensions", *ExtensionsString); } @@ -516,7 +561,7 @@ void CTemplateWriter::SaveProperties(XMLDocument *pDoc, XMLElement *pParent, CSt else { - SaveEnumTemplate(pEnum, rkDir); + SaveEnumTemplate(pEnum, pMaster); pElem->SetAttribute("template", *pEnum->mSourceFile); } } @@ -531,28 +576,167 @@ void CTemplateWriter::SaveProperties(XMLDocument *pDoc, XMLElement *pParent, CSt else { - SaveBitfieldTemplate(pBitfield, rkDir); + SaveBitfieldTemplate(pBitfield, pMaster); pElem->SetAttribute("template", *pBitfield->mSourceFile); } } // Struct/array-specific parameters - if (pProp->Type() == eStructProperty || pProp->Type() == eArrayProperty) + else if (pProp->Type() == eStructProperty || pProp->Type() == eArrayProperty) { + // Element Name + if (pProp->Type() == eArrayProperty) + { + CArrayTemplate *pArray = static_cast(pProp); + + if (!pArray->ElementName().IsEmpty()) + { + XMLElement *pElement = pDoc->NewElement("element_name"); + pElement->SetText(*static_cast(pProp)->ElementName()); + pElem->LinkEndChild(pElement); + } + } + + // Sub-properties CStructTemplate *pStruct = static_cast(pProp); if (pStruct->mSourceFile.IsEmpty()) - SaveProperties(pDoc, pElem, pStruct, pMaster, rkDir); + SaveProperties(pDoc, pElem, pStruct, pMaster); else { - SaveStructTemplate(pStruct, pMaster, rkDir); + auto it = pMaster->mStructTemplates.find(pStruct->mSourceFile); + + if (it != pMaster->mStructTemplates.end()) + SavePropertyOverrides(pDoc, pElem, pStruct, it->second); + pElem->SetAttribute("template", *pStruct->mSourceFile); } } } } +void CTemplateWriter::SavePropertyOverrides(XMLDocument *pDoc, XMLElement *pParent, CStructTemplate *pStruct, CStructTemplate *pOriginal) +{ + if (!pStruct->StructDataMatches(pOriginal)) + { + // Create base element + XMLElement *pPropsBlock = pDoc->NewElement("properties"); + pParent->LinkEndChild(pPropsBlock); + + for (u32 iProp = 0; iProp < pStruct->Count(); iProp++) + { + IPropertyTemplate *pProp = pStruct->PropertyByIndex(iProp); + IPropertyTemplate *pSource = pOriginal->PropertyByIndex(iProp); + + if (!pProp->Matches(pSource)) + { + // Create element + XMLElement *pElem; + + if (pProp->Type() == eStructProperty) + pElem = pDoc->NewElement("struct"); + else if (pProp->Type() == eEnumProperty) + pElem = pDoc->NewElement("enum"); + else if (pProp->Type() == eBitfieldProperty) + pElem = pDoc->NewElement("bitfield"); + else if (pProp->Type() == eArrayProperty) + pElem = pDoc->NewElement("array"); + else + pElem = pDoc->NewElement("property"); + + pPropsBlock->LinkEndChild(pElem); + + // ID + u32 ID = pProp->PropertyID(); + pElem->SetAttribute("ID", *TString::HexString(pProp->PropertyID(), true, true, (ID > 0xFF ? 8 : 2))); + + // Name + if (pProp->Name() != pSource->Name()) + pElem->SetAttribute("name", *pProp->Name()); + + // Default + if (pProp->CanHaveDefault() && !pProp->RawDefaultValue()->Matches(pSource->RawDefaultValue())) + { + XMLElement *pDefault = pDoc->NewElement("default"); + pDefault->SetText(*pProp->DefaultToString()); + pElem->LinkEndChild(pDefault); + } + + // Description + if (pProp->Description() != pSource->Description()) + { + XMLElement *pDesc = pDoc->NewElement("description"); + pDesc->SetText(*pProp->Description()); + pElem->LinkEndChild(pDesc); + } + + // Range + if (pProp->IsNumerical()) + { + TString Range = pProp->RangeToString(); + + if (Range != pSource->RangeToString()) + { + XMLElement *pRange = pDoc->NewElement("range"); + pRange->SetText(*Range); + pElem->LinkEndChild(pRange); + } + } + + // Suffix + if (pProp->Suffix() != pSource->Suffix()) + { + XMLElement *pSuffix = pDoc->NewElement("suffix"); + pSuffix->SetText(*pProp->Suffix()); + pElem->LinkEndChild(pSuffix); + } + + // Cook Pref + if (pProp->CookPreference() != pSource->CookPreference()) + { + XMLElement *pCookPref = pDoc->NewElement("should_cook"); + + TString PrefStr; + if (pProp->CookPreference() == eAlwaysCook) PrefStr = "always"; + else if (pProp->CookPreference() == eNeverCook) PrefStr = "never"; + else PrefStr = "nopref"; + + pCookPref->SetText(*PrefStr); + pElem->LinkEndChild(pCookPref); + } + + // File-specific parameters + if (pProp->Type() == eFileProperty) + { + CFileTemplate *pFile = static_cast(pProp); + CFileTemplate *pSourceFile = static_cast(pSource); + + if (pFile->Extensions() != pSourceFile->Extensions()) + { + TString ExtensionsString; + + for (auto it = pFile->Extensions().begin(); it != pFile->Extensions().end(); it++) + ExtensionsString += *it + ","; + + ExtensionsString = ExtensionsString.ChopBack(1); + if (ExtensionsString.IsEmpty()) ExtensionsString = "UNKN"; + pElem->SetAttribute("extensions", *ExtensionsString); + } + } + + // Struct/array-specific parameters + else if (pProp->Type() == eStructProperty || pProp->Type() == eArrayProperty) + { + CStructTemplate *pStruct = static_cast(pProp); + CStructTemplate *pSourceStruct = static_cast(pSource); + SavePropertyOverrides(pDoc, pElem, pStruct, pSourceStruct); + } + } + } + } +} + void CTemplateWriter::SaveEnumerators(XMLDocument *pDoc, XMLElement *pParent, CEnumTemplate *pTemp) { XMLElement *pEnumerators = pDoc->NewElement("enumerators"); @@ -562,7 +746,7 @@ void CTemplateWriter::SaveEnumerators(XMLDocument *pDoc, XMLElement *pParent, CE { XMLElement *pElem = pDoc->NewElement("enumerator"); u32 EnumerID = pTemp->EnumeratorID(iEnum); - pElem->SetAttribute("ID", *TString::HexString(EnumerID, true, true, (EnumerID > 0xFF ? 8 : 0))); + pElem->SetAttribute("ID", *TString::HexString(EnumerID, true, true, (EnumerID > 0xFF ? 8 : 2))); pElem->SetAttribute("name", *pTemp->EnumeratorName(iEnum)); pEnumerators->LinkEndChild(pElem); } diff --git a/src/Core/Resource/Cooker/CTemplateWriter.h b/src/Core/Resource/Cooker/CTemplateWriter.h index e59434a8..2f48f24b 100644 --- a/src/Core/Resource/Cooker/CTemplateWriter.h +++ b/src/Core/Resource/Cooker/CTemplateWriter.h @@ -8,16 +8,18 @@ class CTemplateWriter { CTemplateWriter(); + static TString smTemplatesDir; public: static void SaveAllTemplates(); - static void SaveGameTemplates(CMasterTemplate *pMaster, const TString& rkDir); - static void SavePropertyList(const TString& rkDir); - static void SaveScriptTemplate(CScriptTemplate *pTemp, const TString& rkDir); - static void SaveStructTemplate(CStructTemplate *pTemp, CMasterTemplate *pMaster, const TString& rkDir); - static void SaveEnumTemplate(CEnumTemplate *pTemp, const TString& rkDir); - static void SaveBitfieldTemplate(CBitfieldTemplate *pTemp, const TString& rkDir); - static void SaveProperties(tinyxml2::XMLDocument *pDoc, tinyxml2::XMLElement *pParent, CStructTemplate *pTemp, CMasterTemplate *pMaster, const TString& rkDir); + static void SaveGameTemplates(CMasterTemplate *pMaster); + static void SavePropertyList(); + static void SaveScriptTemplate(CScriptTemplate *pTemp); + static void SaveStructTemplate(CStructTemplate *pTemp, CMasterTemplate *pMaster); + static void SaveEnumTemplate(CEnumTemplate *pTemp, CMasterTemplate *pMaster); + static void SaveBitfieldTemplate(CBitfieldTemplate *pTemp, CMasterTemplate *pMaster); + static void SaveProperties(tinyxml2::XMLDocument *pDoc, tinyxml2::XMLElement *pParent, CStructTemplate *pTemp, CMasterTemplate *pMaster); + static void SavePropertyOverrides(tinyxml2::XMLDocument *pDoc, tinyxml2::XMLElement *pParent, CStructTemplate *pStruct, CStructTemplate *pOriginal); static void SaveEnumerators(tinyxml2::XMLDocument *pDoc, tinyxml2::XMLElement *pParent, CEnumTemplate *pTemp); static void SaveBitFlags(tinyxml2::XMLDocument *pDoc, tinyxml2::XMLElement *pParent, CBitfieldTemplate *pTemp); }; diff --git a/src/Core/Resource/Factory/CTemplateLoader.cpp b/src/Core/Resource/Factory/CTemplateLoader.cpp index 203ebbdc..541614f6 100644 --- a/src/Core/Resource/Factory/CTemplateLoader.cpp +++ b/src/Core/Resource/Factory/CTemplateLoader.cpp @@ -20,7 +20,7 @@ IPropertyTemplate* CTemplateLoader::LoadProperty(XMLElement *pElem, CStructTempl // Get ID + name if (IDAttr.IsEmpty()) { - Log::Error("Error reading " + rkTemplateName + "; ran into a property with no ID"); + Log::Error(rkTemplateName + ": ran into a property with no ID"); return nullptr; } @@ -33,7 +33,7 @@ IPropertyTemplate* CTemplateLoader::LoadProperty(XMLElement *pElem, CStructTempl Name = CMasterTemplate::GetPropertyName(ID); else { - Log::Error("Error reading " + rkTemplateName + " property " + TString::HexString(ID, true, true, 8) + "; this property doesn't have a name either in the template itself nor in the master list"); + Log::Error(rkTemplateName + ": Property " + TString::HexString(ID, true, true, 8) + " doesn't have a name either in the template itself nor in the master list"); return nullptr; } @@ -53,9 +53,9 @@ IPropertyTemplate* CTemplateLoader::LoadProperty(XMLElement *pElem, CStructTempl if (Type == eInvalidProperty) { if (TypeStr.IsEmpty()) - Log::Error("Error reading " + rkTemplateName + " property " + TString::HexString(ID, true, true, 8) + "; this property doesn't have a valid type set"); + Log::Error(rkTemplateName + ": Property " + TString::HexString(ID, true, true, 8) + " doesn't have a type set"); else - Log::Error("Error reading " + rkTemplateName + " property " + TString::HexString(ID, true, true, 8) + "; this property has an invalid type set: " + TypeStr); + Log::Error(rkTemplateName + ": Property " + TString::HexString(ID, true, true, 8) + " has an invalid type set: " + TypeStr); return nullptr; } @@ -64,7 +64,7 @@ IPropertyTemplate* CTemplateLoader::LoadProperty(XMLElement *pElem, CStructTempl if (!pProp) { - Log::Error("Error reading " + rkTemplateName + " property " + TString::HexString(ID, true, true, 8) + "; seem to have attempted to load a valid but unsupported property type? (" + TypeStr + ")"); + Log::Error(rkTemplateName + ": Property " + TString::HexString(ID, true, true, 8) + " seems to be using a valid but unsupported property type? (" + TypeStr + ")"); return nullptr; } } @@ -90,7 +90,7 @@ IPropertyTemplate* CTemplateLoader::LoadProperty(XMLElement *pElem, CStructTempl u32 VerIdx = mpMaster->GetGameVersion(VerName); if (VerIdx == -1) - Log::Error("Error reading " + rkTemplateName + " property " + TString::HexString(ID, true, true, 8) + "; invalid version \"" + VerName + "\""); + Log::Error(rkTemplateName + ": Property " + TString::HexString(ID, true, true, 8) + " has invalid version \"" + VerName + "\""); else pProp->mAllowedVersions.push_back(VerIdx); @@ -156,15 +156,16 @@ IPropertyTemplate* CTemplateLoader::LoadProperty(XMLElement *pElem, CStructTempl LoadStructTemplate(TemplateAttr, pStruct); if (IsNewProperty && TemplateAttr.IsEmpty() && Type == eStructProperty) - pStruct->mIsSingleProperty = (TypeAttr == "single" ? true : false); + pStruct->mIsSingleProperty = (TypeAttr == "single"); - // Load sub-properties + // Load sub-properties and parameter overrides XMLElement *pProperties = pElem->FirstChildElement("properties"); if (pProperties) LoadProperties(pProperties, pStruct, rkTemplateName); } + CMasterTemplate::AddProperty(pProp, mMasterDir + rkTemplateName); return pProp; } @@ -184,7 +185,7 @@ IPropertyTemplate* CTemplateLoader::CreateProperty(u32 ID, EPropertyType Type, c case eVector3Property: pOut = CREATE_PROP_TEMP(TVector3Template); break; case eColorProperty: pOut = CREATE_PROP_TEMP(TColorTemplate); break; case eFileProperty: pOut = CREATE_PROP_TEMP(CFileTemplate); break; - case eCharacterProperty: pOut = CREATE_PROP_TEMP(CCharacterTemplate); break; + case eCharacterProperty: pOut = CREATE_PROP_TEMP(TCharacterTemplate); break; case eEnumProperty: pOut = CREATE_PROP_TEMP(CEnumTemplate); break; case eBitfieldProperty: pOut = CREATE_PROP_TEMP(CBitfieldTemplate); break; case eArrayProperty: pOut = CREATE_PROP_TEMP(CArrayTemplate); break; @@ -199,60 +200,81 @@ IPropertyTemplate* CTemplateLoader::CreateProperty(u32 ID, EPropertyType Type, c void CTemplateLoader::LoadStructTemplate(const TString& rkTemplateFileName, CStructTemplate *pStruct) { - XMLDocument Doc; - OpenXML(mMasterDir + rkTemplateFileName, Doc); + // Check whether this struct has already been read + auto it = mpMaster->mStructTemplates.find(rkTemplateFileName); + CStructTemplate *pSource = (it == mpMaster->mStructTemplates.end() ? nullptr : it->second); - if (!Doc.Error()) + // If the source hasn't been read yet, then we read it and add it to master's list + if (!pSource) { - XMLElement *pRootElem; + XMLDocument Doc; + OpenXML(mskTemplatesDir + mMasterDir + rkTemplateFileName, Doc); - if (pStruct->Type() == eStructProperty) + if (!Doc.Error()) { - pRootElem = Doc.FirstChildElement("struct"); + XMLElement *pRootElem; - if (!pRootElem) + if (pStruct->Type() == eStructProperty) { - Log::Error("Error reading struct template " + rkTemplateFileName + ": there is no root \"struct\" element"); - return; + pSource = new CStructTemplate(-1, nullptr); + pRootElem = Doc.FirstChildElement("struct"); + + if (!pRootElem) + { + Log::Error(rkTemplateFileName + ": There is no root \"struct\" element"); + return; + } + + TString TypeAttr = TString(pRootElem->Attribute("type")).ToLower(); + + if (TypeAttr.IsEmpty()) + { + Log::Error(rkTemplateFileName + ": There is no struct type specified"); + return; + } + + pSource->mIsSingleProperty = (TypeAttr == "single" ? true : false); } - TString TypeAttr = TString(pRootElem->Attribute("type")).ToLower(); - - if (TypeAttr.IsEmpty()) + else if (pStruct->Type() == eArrayProperty) { - Log::Error("Error reading struct template " + rkTemplateFileName + "; there is no struct type specified"); - return; + pRootElem = Doc.FirstChildElement("array"); + + if (!pRootElem) + { + Log::Error(rkTemplateFileName + ": There is no root \"array\" element"); + return; + } } - pStruct->mIsSingleProperty = (TypeAttr == "single" ? true : false); - } + // Read sub-properties + XMLElement *pSubPropsElem = pRootElem->FirstChildElement("properties"); - else if (pStruct->Type() == eArrayProperty) - { - pRootElem = Doc.FirstChildElement("array"); - - if (!pRootElem) + if (pSubPropsElem) { - Log::Error("Error reading array template " + rkTemplateFileName + "; there is no root \"array\" element"); - return; + LoadProperties(pSubPropsElem, pSource, rkTemplateFileName); + mpMaster->mStructTemplates[rkTemplateFileName] = pSource; + pSource->mSourceFile = rkTemplateFileName; + } + + else + { + Log::Error(rkTemplateFileName + ": There is no \"properties\" block element"); + delete pSource; + pSource = nullptr; } } - - // Read sub-properties - XMLElement *pSubPropsElem = pRootElem->FirstChildElement("properties"); - - if (pSubPropsElem) - LoadProperties(pSubPropsElem, pStruct, rkTemplateFileName); - - else - Log::Error("Error reading " + TString(pStruct->Type() == eStructProperty ? "struct" : "array") + " template " + rkTemplateFileName + "; there's no \"properties\" block element"); } + + // Copy source to the new struct template + if (pSource) + pStruct->CopyStructData(pSource); } void CTemplateLoader::LoadEnumTemplate(const TString& rkTemplateFileName, CEnumTemplate *pEnum) { XMLDocument Doc; - OpenXML(mMasterDir + rkTemplateFileName, Doc); + OpenXML(mskTemplatesDir + mMasterDir + rkTemplateFileName, Doc); if (!Doc.Error()) { @@ -260,7 +282,7 @@ void CTemplateLoader::LoadEnumTemplate(const TString& rkTemplateFileName, CEnumT if (!pRootElem) { - Log::Error("Error reading enum template " + rkTemplateFileName + "; there is no root \"enum\" element"); + Log::Error(rkTemplateFileName + ": There is no root \"enum\" element"); return; } @@ -270,14 +292,16 @@ void CTemplateLoader::LoadEnumTemplate(const TString& rkTemplateFileName, CEnumT LoadEnumerators(pEnumers, pEnum, rkTemplateFileName); else - Log::Error("Error reading enum template " + rkTemplateFileName + "; there is no \"enumerators\" block element"); + Log::Error(rkTemplateFileName + ": There is no \"enumerators\" block element"); + + pEnum->mSourceFile = rkTemplateFileName; } } void CTemplateLoader::LoadBitfieldTemplate(const TString& rkTemplateFileName, CBitfieldTemplate *pBitfield) { XMLDocument Doc; - OpenXML(mMasterDir + rkTemplateFileName, Doc); + OpenXML(mskTemplatesDir + mMasterDir + rkTemplateFileName, Doc); if (!Doc.Error()) { @@ -285,7 +309,7 @@ void CTemplateLoader::LoadBitfieldTemplate(const TString& rkTemplateFileName, CB if (!pRootElem) { - Log::Error("Error reading bitfield template " + rkTemplateFileName + "; there is no root \"bitfield\" element"); + Log::Error(rkTemplateFileName + ": There is no root \"bitfield\" element"); return; } @@ -295,7 +319,9 @@ void CTemplateLoader::LoadBitfieldTemplate(const TString& rkTemplateFileName, CB LoadBitFlags(pFlags, pBitfield, rkTemplateFileName); else - Log::Error("Error reading bitfield template " + rkTemplateFileName + "; there is no \"flags\" block element"); + Log::Error(rkTemplateFileName + ": There is no \"flags\" block element"); + + pBitfield->mSourceFile = rkTemplateFileName; } } @@ -309,7 +335,7 @@ void CTemplateLoader::LoadProperties(XMLElement *pPropertiesElem, CStructTemplat if ( (NodeType != "property") && (NodeType != "struct") && (NodeType != "enum") && (NodeType != "bitfield") && (NodeType != "array") ) { - Log::Error("Error reading " + rkTemplateName + "; a node in a properties block has an invalid name: " + NodeType); + Log::Error(rkTemplateName + ": A node in a properties block has an invalid name: " + NodeType); } // LoadProperty adds newly created properties to the struct, so we don't need to do anything other than call it for each sub-element. @@ -339,7 +365,7 @@ void CTemplateLoader::LoadEnumerators(XMLElement *pEnumeratorsElem, CEnumTemplat else { - TString LogErrorBase = "Couldn't parse enumerator in " + rkTemplateName + "; "; + TString LogErrorBase = rkTemplateName + ": Couldn't parse enumerator; "; if (!pkID && pkName) Log::Error(LogErrorBase + "no valid ID (" + pkName + ")"); else if (pkID && !pkName) Log::Error(LogErrorBase + "no valid name (ID " + pkID + ")"); @@ -364,7 +390,7 @@ void CTemplateLoader::LoadBitFlags(XMLElement *pFlagsElem, CBitfieldTemplate *pT else { - TString LogErrorBase = "Couldn't parse bit flag in " + templateName + "; "; + TString LogErrorBase = templateName + ": Couldn't parse bit flag; "; if (!pkMask && pkName) Log::Error(LogErrorBase + "no mask (" + pkName + ")"); else if (pkMask && !pkName) Log::Error(LogErrorBase + "no name (mask " + pkMask + ")"); @@ -381,6 +407,7 @@ CScriptTemplate* CTemplateLoader::LoadScriptTemplate(XMLDocument *pDoc, const TS CScriptTemplate *pScript = new CScriptTemplate(mpMaster); pScript->mObjectID = ObjectID; pScript->mpBaseStruct = new CStructTemplate(-1, nullptr); + pScript->mSourceFile = rkTemplateName; XMLElement *pRoot = pDoc->FirstChildElement("ScriptTemplate"); @@ -399,7 +426,7 @@ CScriptTemplate* CTemplateLoader::LoadScriptTemplate(XMLDocument *pDoc, const TS if (pPropsElem) LoadProperties(pPropsElem, pScript->mpBaseStruct, rkTemplateName); else - Log::Error("Error reading script template " + rkTemplateName + "; there is no properties block"); + Log::Error(rkTemplateName + ": There is no \"properties\" block element"); // Editor Parameters XMLElement *pEditor = pRoot->FirstChildElement("editor"); @@ -413,7 +440,7 @@ CScriptTemplate* CTemplateLoader::LoadScriptTemplate(XMLDocument *pDoc, const TS while (pEdProp) { TString Name = TString(pEdProp->Attribute("name")).ToLower(); - TString ID = TString(pEdProp->Attribute("ID")).ToLower(); + TString ID = TString(pEdProp->Attribute("ID")); if (!Name.IsEmpty() && !ID.IsEmpty()) { @@ -489,7 +516,7 @@ CScriptTemplate* CTemplateLoader::LoadScriptTemplate(XMLDocument *pDoc, const TS { if (!pScript->mpBaseStruct->HasProperty(Asset.AssetLocation)) { - Log::Error("Error reading script template " + rkTemplateName + "; invalid property for " + Type + " asset: " + ID); + Log::Error(rkTemplateName + ": Invalid property for " + Type + " asset: " + ID); pAsset = pAsset->NextSiblingElement(); continue; } @@ -501,7 +528,7 @@ CScriptTemplate* CTemplateLoader::LoadScriptTemplate(XMLDocument *pDoc, const TS TString Path = "../resources/" + ID; if (!boost::filesystem::exists(*Path)) { - Log::Error("Error reading script template " + rkTemplateName + "; invalid file for " + Type + " asset: " + ID); + Log::Error(rkTemplateName + ": Invalid file for " + Type + " asset: " + ID); pAsset = pAsset->NextSiblingElement(); continue; } @@ -625,7 +652,7 @@ CScriptTemplate* CTemplateLoader::LoadScriptTemplate(XMLDocument *pDoc, const TS void CTemplateLoader::LoadMasterTemplate(XMLDocument *pDoc, CMasterTemplate *pMaster) { mpMaster = pMaster; - mMasterDir = mskTemplatesDir + pMaster->mSourceFile.GetFileDirectory(); + mMasterDir = pMaster->mSourceFile.GetFileDirectory(); XMLElement *pRoot = pDoc->FirstChildElement("MasterTemplate"); mpMaster->mVersion = TString(pRoot->Attribute("version")).ToInt32(); @@ -668,17 +695,14 @@ void CTemplateLoader::LoadMasterTemplate(XMLDocument *pDoc, CMasterTemplate *pMa TString TemplateName = pObj->Attribute("template"); XMLDocument ScriptXML; - OpenXML(mMasterDir + TemplateName, ScriptXML); + OpenXML(mskTemplatesDir + mMasterDir + TemplateName, ScriptXML); if (!ScriptXML.Error()) { CScriptTemplate *pTemp = LoadScriptTemplate(&ScriptXML, TemplateName, ID); if (pTemp) - { - pTemp->mSourceFile = TemplateName; mpMaster->mTemplates[ID] = pTemp; - } } pObj = pObj->NextSiblingElement("object"); @@ -773,7 +797,7 @@ void CTemplateLoader::OpenXML(const TString& rkPath, XMLDocument& rDoc) if (rDoc.Error()) { TString Name = AbsPath.GetFileName(); - Log::Error("Error when opening template XML " + Name + ": " + ErrorName(rDoc.ErrorID())); + Log::Error("Error opening " + Name + ": " + ErrorName(rDoc.ErrorID())); } } @@ -781,27 +805,27 @@ TString CTemplateLoader::ErrorName(XMLError Error) { switch (Error) { - case XML_SUCCESS: return "Success"; - case XML_NO_ATTRIBUTE: return "No attribute"; - case XML_WRONG_ATTRIBUTE_TYPE: return "Wrong attribute type"; - case XML_ERROR_FILE_NOT_FOUND: return "File not found"; - case XML_ERROR_FILE_COULD_NOT_BE_OPENED: return "File could not be opened"; - case XML_ERROR_FILE_READ_ERROR: return "File read error"; - case XML_ERROR_ELEMENT_MISMATCH: return "Element mismatch"; - case XML_ERROR_PARSING_ELEMENT: return "Parsing element"; - case XML_ERROR_PARSING_ATTRIBUTE: return "Parsing attribute"; - case XML_ERROR_IDENTIFYING_TAG: return "Identifying tag"; - case XML_ERROR_PARSING_TEXT: return "Parsing text"; - case XML_ERROR_PARSING_CDATA: return "Parsing CData"; - case XML_ERROR_PARSING_COMMENT: return "Parsing comment"; - case XML_ERROR_PARSING_DECLARATION: return "Parsing declaration"; - case XML_ERROR_PARSING_UNKNOWN: return "Parsing unknown"; - case XML_ERROR_EMPTY_DOCUMENT: return "Empty document"; - case XML_ERROR_MISMATCHED_ELEMENT: return "Mismatched element"; - case XML_ERROR_PARSING: return "Parsing"; - case XML_CAN_NOT_CONVERT_TEXT: return "Cannot convert text"; - case XML_NO_TEXT_NODE: return "No text node"; - default: return "Unknown error"; + case XML_SUCCESS: return "Success"; + case XML_NO_ATTRIBUTE: return "No attribute"; + case XML_WRONG_ATTRIBUTE_TYPE: return "Wrong attribute type"; + case XML_ERROR_FILE_NOT_FOUND: return "File not found"; + case XML_ERROR_FILE_COULD_NOT_BE_OPENED: return "File could not be opened"; + case XML_ERROR_FILE_READ_ERROR: return "File read error"; + case XML_ERROR_ELEMENT_MISMATCH: return "Element mismatch"; + case XML_ERROR_PARSING_ELEMENT: return "Parsing element"; + case XML_ERROR_PARSING_ATTRIBUTE: return "Parsing attribute"; + case XML_ERROR_IDENTIFYING_TAG: return "Identifying tag"; + case XML_ERROR_PARSING_TEXT: return "Parsing text"; + case XML_ERROR_PARSING_CDATA: return "Parsing CData"; + case XML_ERROR_PARSING_COMMENT: return "Parsing comment"; + case XML_ERROR_PARSING_DECLARATION: return "Parsing declaration"; + case XML_ERROR_PARSING_UNKNOWN: return "Parsing unknown"; + case XML_ERROR_EMPTY_DOCUMENT: return "Empty document"; + case XML_ERROR_MISMATCHED_ELEMENT: return "Mismatched element"; + case XML_ERROR_PARSING: return "Parsing"; + case XML_CAN_NOT_CONVERT_TEXT: return "Cannot convert text"; + case XML_NO_TEXT_NODE: return "No text node"; + default: return "Unknown error"; } } @@ -861,7 +885,7 @@ void CTemplateLoader::LoadGameTemplates(EGame Game) { CMasterTemplate *pMaster = *it; - if (pMaster->GetGame() == Game) + if (pMaster->GetGame() == Game && !pMaster->IsLoadedSuccessfully()) { XMLDocument MasterXML; OpenXML(mskTemplatesDir + pMaster->mSourceFile, MasterXML); @@ -878,12 +902,35 @@ void CTemplateLoader::LoadGameTemplates(EGame Game) } } +void CTemplateLoader::LoadAllGames() +{ + std::list MasterList = CMasterTemplate::GetMasterList(); + + for (auto it = MasterList.begin(); it != MasterList.end(); it++) + { + CMasterTemplate *pMaster = *it; + + if (!pMaster->IsLoadedSuccessfully()) + { + XMLDocument MasterXML; + OpenXML(mskTemplatesDir + pMaster->mSourceFile, MasterXML); + + if (!MasterXML.Error()) + { + CTemplateLoader Loader(mskTemplatesDir); + Loader.mGame = pMaster->GetGame(); + Loader.LoadMasterTemplate(&MasterXML, pMaster); + } + } + } +} + void CTemplateLoader::LoadPropertyList(XMLDocument *pDoc, const TString& ListName) { XMLElement *pRootElem = pDoc->FirstChildElement("Properties"); if (!pRootElem) - Log::Error("Error reading property list at " + ListName + "; there is no root \"Properties\" block element"); + Log::Error(ListName + ": There is no root \"Properties\" block element"); else { diff --git a/src/Core/Resource/Factory/CTemplateLoader.h b/src/Core/Resource/Factory/CTemplateLoader.h index 09aa3f4e..2026892b 100644 --- a/src/Core/Resource/Factory/CTemplateLoader.h +++ b/src/Core/Resource/Factory/CTemplateLoader.h @@ -45,6 +45,7 @@ class CTemplateLoader public: static void LoadGameList(); static void LoadGameTemplates(EGame Game); + static void LoadAllGames(); static void LoadPropertyList(tinyxml2::XMLDocument *pDoc, const TString& rkListName); }; diff --git a/src/Core/Resource/Script/CMasterTemplate.cpp b/src/Core/Resource/Script/CMasterTemplate.cpp index 5140ae8d..01357892 100644 --- a/src/Core/Resource/Script/CMasterTemplate.cpp +++ b/src/Core/Resource/Script/CMasterTemplate.cpp @@ -99,6 +99,11 @@ TString CMasterTemplate::MessageByIndex(u32 Index) return (std::next(it, Index))->second; } +TString CMasterTemplate::GetDirectory() const +{ + return mSourceFile.GetFileDirectory(); +} + bool CMasterTemplate::IsLoadedSuccessfully() { return mFullyLoaded; @@ -135,6 +140,79 @@ TString CMasterTemplate::GetPropertyName(u32 PropertyID) return "Unknown"; } +void CMasterTemplate::AddProperty(IPropertyTemplate *pTemp, const TString& rkTemplateName) +{ + auto it = smIDMap.find(pTemp->PropertyID()); + + // Add this property/template to existing ID info + if (it != smIDMap.end()) + { + SPropIDInfo& rInfo = it->second; + bool NewTemplate = true; + + for (u32 iTemp = 0; iTemp < rInfo.XMLList.size(); iTemp++) + { + if (rInfo.XMLList[iTemp] == rkTemplateName) + { + NewTemplate = false; + break; + } + } + + if (NewTemplate) + rInfo.XMLList.push_back(rkTemplateName); + + it->second.PropertyList.push_back(pTemp); + } + + // Create new ID info + else + { + SPropIDInfo Info; + Info.XMLList.push_back(rkTemplateName); + Info.PropertyList.push_back(pTemp); + smIDMap[pTemp->PropertyID()] = Info; + } +} + +void CMasterTemplate::RenameProperty(u32 ID, const TString& rkNewName) +{ + auto NameIt = smPropertyNames.find(ID); + TString CurName = (NameIt == smPropertyNames.end() ? "" : NameIt->second); + + auto InfoIt = smIDMap.find(ID); + + if (InfoIt != smIDMap.end()) + { + const SPropIDInfo& rkInfo = InfoIt->second; + + for (u32 iTemp = 0; iTemp < rkInfo.PropertyList.size(); iTemp++) + { + IPropertyTemplate *pTemp = rkInfo.PropertyList[iTemp]; + + if (pTemp->Name() == CurName) + pTemp->SetName(rkNewName); + } + } + + if (NameIt != smPropertyNames.end()) + smPropertyNames[ID] = rkNewName; +} + +std::vector CMasterTemplate::GetTemplatesUsingID(u32 ID) +{ + auto InfoIt = smIDMap.find(ID); + + if (InfoIt != smIDMap.end()) + { + const SPropIDInfo& rkInfo = InfoIt->second; + return rkInfo.XMLList; + } + else + return std::vector(); +} + +std::map CMasterTemplate::smIDMap; std::map CMasterTemplate::smMasterMap; std::map CMasterTemplate::smPropertyNames; u32 CMasterTemplate::smGameListVersion; diff --git a/src/Core/Resource/Script/CMasterTemplate.h b/src/Core/Resource/Script/CMasterTemplate.h index 2cf2822e..740ad581 100644 --- a/src/Core/Resource/Script/CMasterTemplate.h +++ b/src/Core/Resource/Script/CMasterTemplate.h @@ -18,11 +18,18 @@ class CMasterTemplate bool mFullyLoaded; std::vector mGameVersions; + std::map mStructTemplates; + std::map mTemplates; std::map mStates; std::map mMessages; - + struct SPropIDInfo + { + std::vector XMLList; // List of script/struct templates that use this ID + std::vector PropertyList; // List of all properties that use this ID + }; + static std::map smIDMap; static std::map smMasterMap; static std::map smPropertyNames; static u32 smGameListVersion; @@ -45,11 +52,15 @@ public: TString MessageByID(u32 MessageID); TString MessageByID(const CFourCC& MessageID); TString MessageByIndex(u32 Index); + TString GetDirectory() const; bool IsLoadedSuccessfully(); static CMasterTemplate* GetMasterForGame(EGame Game); static std::list GetMasterList(); static TString GetPropertyName(u32 PropertyID); + static void AddProperty(IPropertyTemplate *pTemp, const TString& rkTemplateName); + static void RenameProperty(u32 ID, const TString& rkNewName); + static std::vector GetTemplatesUsingID(u32 ID); }; // ************ INLINE ************ diff --git a/src/Core/Resource/Script/IPropertyTemplate.h b/src/Core/Resource/Script/IPropertyTemplate.h index 58fcf191..5588b3f0 100644 --- a/src/Core/Resource/Script/IPropertyTemplate.h +++ b/src/Core/Resource/Script/IPropertyTemplate.h @@ -41,7 +41,7 @@ public: IPropertyTemplate(u32 ID, CStructTemplate *pParent = 0) : mID(ID) , mpParent(pParent) - , mName("Unknown") + , mName("UNSET PROPERTY NAME") , mCookPreference(eNoCookPreference) { } @@ -130,7 +130,7 @@ public: // TTypedPropertyTemplate - Template property class that allows for tracking // a default value. Typedefs are set up for a bunch of property types. -template +template class TTypedPropertyTemplate : public IPropertyTemplate { friend class CTemplateLoader; @@ -146,9 +146,9 @@ public: TTypedPropertyTemplate(u32 ID, const TString& rkName, ECookPreference CookPreference, CStructTemplate *pParent = 0) : IPropertyTemplate(ID, rkName, CookPreference, pParent) {} - virtual EPropertyType Type() const { return PropTypeEnum; } - virtual bool CanHaveDefault() const { return true; } - virtual bool IsNumerical() const { return false; } + virtual EPropertyType Type() const { return PropTypeEnum; } + virtual bool CanHaveDefault() const { return CanHaveDefaultValue; } + virtual bool IsNumerical() const { return false; } virtual IProperty* InstantiateProperty(CPropertyStruct *pParent) { @@ -200,7 +200,7 @@ public: // TNumericalPropertyTemplate - Subclass of TTypedPropertyTemplate for numerical // property types, and allows a min/max value and a suffix to be tracked. template -class TNumericalPropertyTemplate : public TTypedPropertyTemplate +class TNumericalPropertyTemplate : public TTypedPropertyTemplate { friend class CTemplateLoader; friend class CTemplateWriter; @@ -252,7 +252,7 @@ public: virtual void SetParam(const TString& rkParamName, const TString& rkValue) { - TTypedPropertyTemplate::SetParam(rkParamName, rkValue); + TTypedPropertyTemplate::SetParam(rkParamName, rkValue); if (rkParamName == "range") { @@ -288,14 +288,15 @@ public: }; // Typedefs for all property types that don't need further functionality. -typedef TTypedPropertyTemplate TBoolTemplate; -typedef TNumericalPropertyTemplate TByteTemplate; -typedef TNumericalPropertyTemplate TShortTemplate; -typedef TNumericalPropertyTemplate TLongTemplate; -typedef TNumericalPropertyTemplate TFloatTemplate; -typedef TTypedPropertyTemplate TStringTemplate; -typedef TTypedPropertyTemplate TVector3Template; -typedef TTypedPropertyTemplate TColorTemplate; +typedef TTypedPropertyTemplate TBoolTemplate; +typedef TNumericalPropertyTemplate TByteTemplate; +typedef TNumericalPropertyTemplate TShortTemplate; +typedef TNumericalPropertyTemplate TLongTemplate; +typedef TNumericalPropertyTemplate TFloatTemplate; +typedef TTypedPropertyTemplate TStringTemplate; +typedef TTypedPropertyTemplate TVector3Template; +typedef TTypedPropertyTemplate TColorTemplate; +typedef TTypedPropertyTemplate TCharacterTemplate; // CFileTemplate - Property template for files. Tracks a list of file types that // the property is allowed to accept. @@ -348,36 +349,8 @@ public: const TStringList& Extensions() const { return mAcceptedExtensions; } }; -// CCharacterTemplate - Typed property that doesn't allow default values. -class CCharacterTemplate : public TTypedPropertyTemplate -{ - friend class CTemplateLoader; - friend class CTemplateWriter; - -public: - CCharacterTemplate(u32 ID, CStructTemplate *pParent = 0) - : TTypedPropertyTemplate(ID, pParent) { } - - CCharacterTemplate(u32 ID, const TString& rkName, ECookPreference CookPreference, CStructTemplate *pParent = 0) - : TTypedPropertyTemplate(ID, rkName, CookPreference, pParent) { } - - virtual bool CanHaveDefault() const - { - return false; - } - - IProperty* InstantiateProperty(CPropertyStruct *pParent) - { - return new TCharacterProperty(this, pParent); - } - - DEFINE_TEMPLATE_CLONE(CCharacterTemplate) -}; - // CEnumTemplate - Property template for enums. Tracks a list of possible values (enumerators). -class CEnumTemplate : public TLongTemplate +class CEnumTemplate : public TTypedPropertyTemplate { friend class CTemplateLoader; friend class CTemplateWriter; @@ -400,12 +373,12 @@ class CEnumTemplate : public TLongTemplate public: CEnumTemplate(u32 ID, CStructTemplate *pParent = 0) - : TLongTemplate(ID, pParent) + : TTypedPropertyTemplate(ID, pParent) { } CEnumTemplate(u32 ID, const TString& rkName, ECookPreference CookPreference, CStructTemplate *pParent = 0) - : TLongTemplate(ID, rkName, CookPreference, pParent) + : TTypedPropertyTemplate(ID, rkName, CookPreference, pParent) { } @@ -424,7 +397,7 @@ public: virtual void Copy(const IPropertyTemplate *pkTemp) { - TLongTemplate::Copy(pkTemp); + TTypedPropertyTemplate::Copy(pkTemp); const CEnumTemplate *pkEnum = static_cast(pkTemp); mEnumerators = pkEnum->mEnumerators; @@ -435,7 +408,7 @@ public: { const CEnumTemplate *pkEnum = static_cast(pkTemp); - return ( (TLongTemplate::Matches(pkTemp)) && + return ( (TTypedPropertyTemplate::Matches(pkTemp)) && (mEnumerators == pkEnum->mEnumerators) && (mSourceFile == pkEnum->mSourceFile) ); } @@ -474,7 +447,7 @@ public: // CBitfieldTemplate - Property template for bitfields, which can have multiple // distinct boolean parameters packed into one property. -class CBitfieldTemplate : public TTypedPropertyTemplate +class CBitfieldTemplate : public TTypedPropertyTemplate { friend class CTemplateLoader; friend class CTemplateWriter; @@ -594,6 +567,11 @@ public: IPropertyTemplate::Copy(pkTemp); const CStructTemplate *pkStruct = static_cast(pkTemp); + CopyStructData(pkStruct); + } + + void CopyStructData(const CStructTemplate *pkStruct) + { mVersionPropertyCounts = pkStruct->mVersionPropertyCounts; mIsSingleProperty = pkStruct->mIsSingleProperty; mSourceFile = pkStruct->mSourceFile; @@ -611,7 +589,17 @@ public: if ( (IPropertyTemplate::Matches(pkTemp)) && (mVersionPropertyCounts == pkStruct->mVersionPropertyCounts) && (mIsSingleProperty == pkStruct->mIsSingleProperty) && - (mSourceFile == pkStruct->mSourceFile) && + (mSourceFile == pkStruct->mSourceFile) ) + { + return StructDataMatches(pkStruct); + } + + return false; + } + + bool StructDataMatches(const CStructTemplate *pkStruct) const + { + if ( (mIsSingleProperty == pkStruct->mIsSingleProperty) && (mSubProperties.size() == pkStruct->mSubProperties.size()) ) { for (u32 iSub = 0; iSub < mSubProperties.size(); iSub++) @@ -673,6 +661,8 @@ public: virtual void Copy(const IPropertyTemplate *pkTemp) { + IPropertyTemplate::Copy(pkTemp); + CStructTemplate::Copy(pkTemp); mElementName = static_cast(pkTemp)->mElementName; } diff --git a/src/Core/Resource/Script/IPropertyValue.h b/src/Core/Resource/Script/IPropertyValue.h index 8d52ad26..32522042 100644 --- a/src/Core/Resource/Script/IPropertyValue.h +++ b/src/Core/Resource/Script/IPropertyValue.h @@ -168,7 +168,7 @@ public: TString ToString() const { - return TString::HexString(mValue, true, true, 8); + return TString::HexString(mValue, true, true, mValue > 0xFF ? 8 : 2); } void FromString(const TString& rkString) diff --git a/templates/GameList.xml b/templates/GameList.xml index d55b4606..21871ada 100644 --- a/templates/GameList.xml +++ b/templates/GameList.xml @@ -1,6 +1,6 @@ - Properties.xml + Properties.xml Metroid Prime 0x0F diff --git a/templates/Properties.xml b/templates/Properties.xml index 140058c0..2912644d 100644 --- a/templates/Properties.xml +++ b/templates/Properties.xml @@ -1,4 +1,4 @@ - + @@ -4333,7 +4333,7 @@ - + @@ -11491,4 +11491,4 @@ - \ No newline at end of file + diff --git a/templates/dkcr/Enums/AnimEnum.xml b/templates/dkcr/Enums/AnimEnum.xml index ce78a2e8..46dc9961 100644 --- a/templates/dkcr/Enums/AnimEnum.xml +++ b/templates/dkcr/Enums/AnimEnum.xml @@ -1,8 +1,8 @@ - - - - - + + + + + diff --git a/templates/dkcr/Enums/BarrelCannonEnum.xml b/templates/dkcr/Enums/BarrelCannonEnum.xml index dcddc8ef..b11848bc 100644 --- a/templates/dkcr/Enums/BarrelCannonEnum.xml +++ b/templates/dkcr/Enums/BarrelCannonEnum.xml @@ -1,9 +1,9 @@ - - - - - - + + + + + + diff --git a/templates/dkcr/Enums/CableEnum.xml b/templates/dkcr/Enums/CableEnum.xml index cc635201..a8be0790 100644 --- a/templates/dkcr/Enums/CableEnum.xml +++ b/templates/dkcr/Enums/CableEnum.xml @@ -1,8 +1,8 @@ - - - - - + + + + + diff --git a/templates/dkcr/Enums/DamageableTriggerEnum.xml b/templates/dkcr/Enums/DamageableTriggerEnum.xml index e5ef86be..d15aa38d 100644 --- a/templates/dkcr/Enums/DamageableTriggerEnum.xml +++ b/templates/dkcr/Enums/DamageableTriggerEnum.xml @@ -1,9 +1,9 @@ - - - - - - + + + + + + diff --git a/templates/dkcr/Enums/InventorySlot.xml b/templates/dkcr/Enums/InventorySlot.xml index 414a0a62..f01c48d0 100644 --- a/templates/dkcr/Enums/InventorySlot.xml +++ b/templates/dkcr/Enums/InventorySlot.xml @@ -1,50 +1,50 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/templates/dkcr/Enums/MusicEnumA.xml b/templates/dkcr/Enums/MusicEnumA.xml index 82d0e3c8..d333cfb6 100644 --- a/templates/dkcr/Enums/MusicEnumA.xml +++ b/templates/dkcr/Enums/MusicEnumA.xml @@ -1,8 +1,8 @@ - - - - - + + + + + diff --git a/templates/dkcr/Enums/MusicEnumB.xml b/templates/dkcr/Enums/MusicEnumB.xml index 1badd924..7f642661 100644 --- a/templates/dkcr/Enums/MusicEnumB.xml +++ b/templates/dkcr/Enums/MusicEnumB.xml @@ -1,15 +1,15 @@ - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/templates/dkcr/Enums/RobotChickenEnum.xml b/templates/dkcr/Enums/RobotChickenEnum.xml index a4c2996e..255bd3b7 100644 --- a/templates/dkcr/Enums/RobotChickenEnum.xml +++ b/templates/dkcr/Enums/RobotChickenEnum.xml @@ -1,7 +1,7 @@ - - - - + + + + diff --git a/templates/dkcr/Enums/Shape.xml b/templates/dkcr/Enums/Shape.xml index 983cda61..a7821018 100644 --- a/templates/dkcr/Enums/Shape.xml +++ b/templates/dkcr/Enums/Shape.xml @@ -1,9 +1,9 @@ - - - - - - + + + + + + diff --git a/templates/dkcr/Enums/UnknownEnum1.xml b/templates/dkcr/Enums/UnknownEnum1.xml index aae14ca6..16b3a7de 100644 --- a/templates/dkcr/Enums/UnknownEnum1.xml +++ b/templates/dkcr/Enums/UnknownEnum1.xml @@ -1,58 +1,58 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/templates/dkcr/Enums/UnknownEnum2.xml b/templates/dkcr/Enums/UnknownEnum2.xml index be422908..823bf889 100644 --- a/templates/dkcr/Enums/UnknownEnum2.xml +++ b/templates/dkcr/Enums/UnknownEnum2.xml @@ -1,11 +1,11 @@ - - - - - - - - + + + + + + + + diff --git a/templates/dkcr/Enums/UnknownEnum3.xml b/templates/dkcr/Enums/UnknownEnum3.xml index d0128094..a9a604e2 100644 --- a/templates/dkcr/Enums/UnknownEnum3.xml +++ b/templates/dkcr/Enums/UnknownEnum3.xml @@ -1,7 +1,7 @@ - - - - + + + + diff --git a/templates/dkcr/Enums/UnknownEnum4.xml b/templates/dkcr/Enums/UnknownEnum4.xml index d5b50072..5668009a 100644 --- a/templates/dkcr/Enums/UnknownEnum4.xml +++ b/templates/dkcr/Enums/UnknownEnum4.xml @@ -1,7 +1,7 @@ - - - - + + + + diff --git a/templates/dkcr/MasterTemplate.xml b/templates/dkcr/MasterTemplate.xml index 0a365671..553901eb 100644 --- a/templates/dkcr/MasterTemplate.xml +++ b/templates/dkcr/MasterTemplate.xml @@ -1,165 +1,165 @@ + + + + + - - - - - - - + - + - + + - - - - - + + - + + + + + + - - - - - + + + + + - - + + - - - - - - + + - - + + + + + + + - - + + - - - - - - + + + + + + - - - - - - - - - + + - - + + - - - + + - - - - - - - + + - + + + + + + + + + - - - + - + + + - + - - - + + + + + - - - + + - - - + - + - - + + + - + + + diff --git a/templates/dkcr/Script/AIKeyframe.xml b/templates/dkcr/Script/AIKeyframe.xml index c2b28032..d7e0274e 100644 --- a/templates/dkcr/Script/AIKeyframe.xml +++ b/templates/dkcr/Script/AIKeyframe.xml @@ -39,7 +39,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/AVIS.xml b/templates/dkcr/Script/AVIS.xml index 863366ed..a9aa605f 100644 --- a/templates/dkcr/Script/AVIS.xml +++ b/templates/dkcr/Script/AVIS.xml @@ -17,7 +17,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/Acoustics.xml b/templates/dkcr/Script/Acoustics.xml index 8cd772bc..f74dc8e9 100644 --- a/templates/dkcr/Script/Acoustics.xml +++ b/templates/dkcr/Script/Acoustics.xml @@ -150,9 +150,9 @@ - 0.5 + 0.5 enabled volume - + diff --git a/templates/dkcr/Script/Actor.xml b/templates/dkcr/Script/Actor.xml index 0cef30c5..db7448b6 100644 --- a/templates/dkcr/Script/Actor.xml +++ b/templates/dkcr/Script/Actor.xml @@ -104,7 +104,7 @@ 0x6C75E2EA:0xDAA9D4BE:0x5405F708 0x6C75E2EA:0xF361604C:0x5405F708 0x6C75E2EA:0x5D09F1DD:0x5405F708 - 0x0FC966DC + 0x0FC966DC enabled enabled diff --git a/templates/dkcr/Script/ActorKeyframe.xml b/templates/dkcr/Script/ActorKeyframe.xml index 4933a81c..17cf06fa 100644 --- a/templates/dkcr/Script/ActorKeyframe.xml +++ b/templates/dkcr/Script/ActorKeyframe.xml @@ -39,7 +39,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/ActorMultiKeyFrame.xml b/templates/dkcr/Script/ActorMultiKeyFrame.xml index 34b1298c..401316fd 100644 --- a/templates/dkcr/Script/ActorMultiKeyFrame.xml +++ b/templates/dkcr/Script/ActorMultiKeyFrame.xml @@ -45,7 +45,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/ActorTransform.xml b/templates/dkcr/Script/ActorTransform.xml index 01fcfb23..8cc7f2a9 100644 --- a/templates/dkcr/Script/ActorTransform.xml +++ b/templates/dkcr/Script/ActorTransform.xml @@ -28,7 +28,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/AnimGridModifier.xml b/templates/dkcr/Script/AnimGridModifier.xml index 8dabdeec..7ea0e481 100644 --- a/templates/dkcr/Script/AnimGridModifier.xml +++ b/templates/dkcr/Script/AnimGridModifier.xml @@ -16,7 +16,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/AreaAttributes.xml b/templates/dkcr/Script/AreaAttributes.xml index 04f3b090..0e8f2cce 100644 --- a/templates/dkcr/Script/AreaAttributes.xml +++ b/templates/dkcr/Script/AreaAttributes.xml @@ -31,9 +31,9 @@ - script/common/AreaAttributes.txtr - - 0.5 + script/common/AreaAttributes.txtr + + 0.5 enabled enabled diff --git a/templates/dkcr/Script/AreaDamage.xml b/templates/dkcr/Script/AreaDamage.xml index 11f68fed..6924ad96 100644 --- a/templates/dkcr/Script/AreaDamage.xml +++ b/templates/dkcr/Script/AreaDamage.xml @@ -32,7 +32,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/AssignedAudioStream.xml b/templates/dkcr/Script/AssignedAudioStream.xml index 50d638e1..1a7c4684 100644 --- a/templates/dkcr/Script/AssignedAudioStream.xml +++ b/templates/dkcr/Script/AssignedAudioStream.xml @@ -54,7 +54,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/AudioOccluder.xml b/templates/dkcr/Script/AudioOccluder.xml index ed04ba14..5c4a9f7b 100644 --- a/templates/dkcr/Script/AudioOccluder.xml +++ b/templates/dkcr/Script/AudioOccluder.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/BeatUpHandler.xml b/templates/dkcr/Script/BeatUpHandler.xml index 29278be5..42628762 100644 --- a/templates/dkcr/Script/BeatUpHandler.xml +++ b/templates/dkcr/Script/BeatUpHandler.xml @@ -61,7 +61,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/BloomEffect.xml b/templates/dkcr/Script/BloomEffect.xml index fbd58d2f..ea2c7df9 100644 --- a/templates/dkcr/Script/BloomEffect.xml +++ b/templates/dkcr/Script/BloomEffect.xml @@ -27,7 +27,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/Bonus.xml b/templates/dkcr/Script/Bonus.xml index 4fd0db62..418489af 100644 --- a/templates/dkcr/Script/Bonus.xml +++ b/templates/dkcr/Script/Bonus.xml @@ -27,7 +27,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/CSTI.xml b/templates/dkcr/Script/CSTI.xml index 0697f423..63ad005a 100644 --- a/templates/dkcr/Script/CSTI.xml +++ b/templates/dkcr/Script/CSTI.xml @@ -27,7 +27,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/CameraBlurKeyframe.xml b/templates/dkcr/Script/CameraBlurKeyframe.xml index d21f378e..16df405b 100644 --- a/templates/dkcr/Script/CameraBlurKeyframe.xml +++ b/templates/dkcr/Script/CameraBlurKeyframe.xml @@ -30,7 +30,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/CameraFilterKeyframe.xml b/templates/dkcr/Script/CameraFilterKeyframe.xml index 2caf401e..627ab88f 100644 --- a/templates/dkcr/Script/CameraFilterKeyframe.xml +++ b/templates/dkcr/Script/CameraFilterKeyframe.xml @@ -41,7 +41,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/CameraHint.xml b/templates/dkcr/Script/CameraHint.xml index 3d6fabaa..58e909e3 100644 --- a/templates/dkcr/Script/CameraHint.xml +++ b/templates/dkcr/Script/CameraHint.xml @@ -243,7 +243,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/CameraManager.xml b/templates/dkcr/Script/CameraManager.xml index 3cb48999..48a559e3 100644 --- a/templates/dkcr/Script/CameraManager.xml +++ b/templates/dkcr/Script/CameraManager.xml @@ -22,7 +22,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/CameraModifier.xml b/templates/dkcr/Script/CameraModifier.xml index cccf6b72..d7fef735 100644 --- a/templates/dkcr/Script/CameraModifier.xml +++ b/templates/dkcr/Script/CameraModifier.xml @@ -33,7 +33,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/CameraShaker.xml b/templates/dkcr/Script/CameraShaker.xml index 1aa04a69..c63edaac 100644 --- a/templates/dkcr/Script/CameraShaker.xml +++ b/templates/dkcr/Script/CameraShaker.xml @@ -38,7 +38,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/Checkpoint.xml b/templates/dkcr/Script/Checkpoint.xml index ca30ca19..8d1346a2 100644 --- a/templates/dkcr/Script/Checkpoint.xml +++ b/templates/dkcr/Script/Checkpoint.xml @@ -35,7 +35,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/ClingPathControl.xml b/templates/dkcr/Script/ClingPathControl.xml index 0d36a5af..bdfe7d0c 100644 --- a/templates/dkcr/Script/ClingPathControl.xml +++ b/templates/dkcr/Script/ClingPathControl.xml @@ -44,7 +44,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/ColorModulate.xml b/templates/dkcr/Script/ColorModulate.xml index ed38c404..32f755f7 100644 --- a/templates/dkcr/Script/ColorModulate.xml +++ b/templates/dkcr/Script/ColorModulate.xml @@ -75,7 +75,7 @@ script/common/ColorModulate.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/ConditionalRelay.xml b/templates/dkcr/Script/ConditionalRelay.xml index ccc6e050..53907d7f 100644 --- a/templates/dkcr/Script/ConditionalRelay.xml +++ b/templates/dkcr/Script/ConditionalRelay.xml @@ -40,9 +40,9 @@ - script/common/ConditionalRelay.txtr - - 0.5 + script/common/ConditionalRelay.txtr + + 0.5 enabled enabled diff --git a/templates/dkcr/Script/ControllerAction.xml b/templates/dkcr/Script/ControllerAction.xml index d2f6af7d..0b75689a 100644 --- a/templates/dkcr/Script/ControllerAction.xml +++ b/templates/dkcr/Script/ControllerAction.xml @@ -29,7 +29,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/Counter.xml b/templates/dkcr/Script/Counter.xml index b23e8e2f..c82d3d6c 100644 --- a/templates/dkcr/Script/Counter.xml +++ b/templates/dkcr/Script/Counter.xml @@ -61,9 +61,9 @@ - script/common/Counter.txtr - - 0.5 + script/common/Counter.txtr + + 0.5 enabled enabled diff --git a/templates/dkcr/Script/Credits.xml b/templates/dkcr/Script/Credits.xml index 8e47ce99..33ee6cd8 100644 --- a/templates/dkcr/Script/Credits.xml +++ b/templates/dkcr/Script/Credits.xml @@ -76,7 +76,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/DamageArea.xml b/templates/dkcr/Script/DamageArea.xml index 98582fe4..fd6dffeb 100644 --- a/templates/dkcr/Script/DamageArea.xml +++ b/templates/dkcr/Script/DamageArea.xml @@ -16,7 +16,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/DamageEffect.xml b/templates/dkcr/Script/DamageEffect.xml index fdd14d13..8ef40b14 100644 --- a/templates/dkcr/Script/DamageEffect.xml +++ b/templates/dkcr/Script/DamageEffect.xml @@ -16,7 +16,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/DamageableTrigger.xml b/templates/dkcr/Script/DamageableTrigger.xml index bba512aa..18d2f8ff 100644 --- a/templates/dkcr/Script/DamageableTrigger.xml +++ b/templates/dkcr/Script/DamageableTrigger.xml @@ -26,10 +26,10 @@ - script/common/DamageableTrigger.txtr - + script/common/DamageableTrigger.txtr + enabled volume - + diff --git a/templates/dkcr/Script/DamageableTriggerOrientated.xml b/templates/dkcr/Script/DamageableTriggerOrientated.xml index c7402b7d..570502ff 100644 --- a/templates/dkcr/Script/DamageableTriggerOrientated.xml +++ b/templates/dkcr/Script/DamageableTriggerOrientated.xml @@ -26,6 +26,6 @@ enabled volume - + diff --git a/templates/dkcr/Script/DepthOfFieldTuner.xml b/templates/dkcr/Script/DepthOfFieldTuner.xml index ab5033ad..09b1c084 100644 --- a/templates/dkcr/Script/DepthOfFieldTuner.xml +++ b/templates/dkcr/Script/DepthOfFieldTuner.xml @@ -45,7 +45,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/DistanceFog.xml b/templates/dkcr/Script/DistanceFog.xml index 9e66827b..5c8dd86e 100644 --- a/templates/dkcr/Script/DistanceFog.xml +++ b/templates/dkcr/Script/DistanceFog.xml @@ -62,9 +62,9 @@ - script/common/DistanceFog.txtr - - 0.5 + script/common/DistanceFog.txtr + + 0.5 enabled enabled diff --git a/templates/dkcr/Script/DynamicLight.xml b/templates/dkcr/Script/DynamicLight.xml index 2ff17cde..9018d5fe 100644 --- a/templates/dkcr/Script/DynamicLight.xml +++ b/templates/dkcr/Script/DynamicLight.xml @@ -124,7 +124,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/EOLDisplay.xml b/templates/dkcr/Script/EOLDisplay.xml index 51f4b419..f99d8bc3 100644 --- a/templates/dkcr/Script/EOLDisplay.xml +++ b/templates/dkcr/Script/EOLDisplay.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/Effect.xml b/templates/dkcr/Script/Effect.xml index fc28def7..684886e4 100644 --- a/templates/dkcr/Script/Effect.xml +++ b/templates/dkcr/Script/Effect.xml @@ -79,7 +79,7 @@ script/common/Effect.txtr - + enabled enabled diff --git a/templates/dkcr/Script/EnvFxDensityController.xml b/templates/dkcr/Script/EnvFxDensityController.xml index 05537af9..9bc9d147 100644 --- a/templates/dkcr/Script/EnvFxDensityController.xml +++ b/templates/dkcr/Script/EnvFxDensityController.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/FalsePerspective.xml b/templates/dkcr/Script/FalsePerspective.xml index 40cf70b1..768eb39b 100644 --- a/templates/dkcr/Script/FalsePerspective.xml +++ b/templates/dkcr/Script/FalsePerspective.xml @@ -27,7 +27,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/FogOverlay.xml b/templates/dkcr/Script/FogOverlay.xml index 8d124cec..b212c63c 100644 --- a/templates/dkcr/Script/FogOverlay.xml +++ b/templates/dkcr/Script/FogOverlay.xml @@ -60,7 +60,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/GPTR.xml b/templates/dkcr/Script/GPTR.xml index fe752510..f6b48d57 100644 --- a/templates/dkcr/Script/GPTR.xml +++ b/templates/dkcr/Script/GPTR.xml @@ -15,7 +15,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/GameManager.xml b/templates/dkcr/Script/GameManager.xml index b70ccab0..aba98e4c 100644 --- a/templates/dkcr/Script/GameManager.xml +++ b/templates/dkcr/Script/GameManager.xml @@ -29,7 +29,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/GameOver.xml b/templates/dkcr/Script/GameOver.xml index ebaa1172..c8946f63 100644 --- a/templates/dkcr/Script/GameOver.xml +++ b/templates/dkcr/Script/GameOver.xml @@ -15,7 +15,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/GeneratedObjectDeleter.xml b/templates/dkcr/Script/GeneratedObjectDeleter.xml index 648ddb09..b5b048a6 100644 --- a/templates/dkcr/Script/GeneratedObjectDeleter.xml +++ b/templates/dkcr/Script/GeneratedObjectDeleter.xml @@ -28,7 +28,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/Generator.xml b/templates/dkcr/Script/Generator.xml index 426a9cf3..eac1d311 100644 --- a/templates/dkcr/Script/Generator.xml +++ b/templates/dkcr/Script/Generator.xml @@ -56,7 +56,7 @@ script/common/Generator.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/GenericCreatureGroup.xml b/templates/dkcr/Script/GenericCreatureGroup.xml index 0f59cd72..e2b12046 100644 --- a/templates/dkcr/Script/GenericCreatureGroup.xml +++ b/templates/dkcr/Script/GenericCreatureGroup.xml @@ -25,7 +25,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/HUD.xml b/templates/dkcr/Script/HUD.xml index 9ec63d6d..1b418766 100644 --- a/templates/dkcr/Script/HUD.xml +++ b/templates/dkcr/Script/HUD.xml @@ -349,7 +349,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/HUDProxy.xml b/templates/dkcr/Script/HUDProxy.xml index 82d24f4d..0ff6df43 100644 --- a/templates/dkcr/Script/HUDProxy.xml +++ b/templates/dkcr/Script/HUDProxy.xml @@ -15,7 +15,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/KongProxy.xml b/templates/dkcr/Script/KongProxy.xml index b80daad8..aa3268f0 100644 --- a/templates/dkcr/Script/KongProxy.xml +++ b/templates/dkcr/Script/KongProxy.xml @@ -56,7 +56,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/LODController.xml b/templates/dkcr/Script/LODController.xml index 260adfa6..870fd85e 100644 --- a/templates/dkcr/Script/LODController.xml +++ b/templates/dkcr/Script/LODController.xml @@ -61,7 +61,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/LevelDarkener.xml b/templates/dkcr/Script/LevelDarkener.xml index 70049f2f..143bedf5 100644 --- a/templates/dkcr/Script/LevelDarkener.xml +++ b/templates/dkcr/Script/LevelDarkener.xml @@ -24,7 +24,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/MEAT.xml b/templates/dkcr/Script/MEAT.xml index cdd12450..e119f6ac 100644 --- a/templates/dkcr/Script/MEAT.xml +++ b/templates/dkcr/Script/MEAT.xml @@ -24,7 +24,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/MemoryRelay.xml b/templates/dkcr/Script/MemoryRelay.xml index 796839b5..8df61d62 100644 --- a/templates/dkcr/Script/MemoryRelay.xml +++ b/templates/dkcr/Script/MemoryRelay.xml @@ -23,8 +23,8 @@ script/common/MemoryRelay.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/dkcr/Script/MoleTrainManager.xml b/templates/dkcr/Script/MoleTrainManager.xml index dcbe92ae..d8379043 100644 --- a/templates/dkcr/Script/MoleTrainManager.xml +++ b/templates/dkcr/Script/MoleTrainManager.xml @@ -111,7 +111,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/MotionPlatform.xml b/templates/dkcr/Script/MotionPlatform.xml index 5ca3bff7..c9961caf 100644 --- a/templates/dkcr/Script/MotionPlatform.xml +++ b/templates/dkcr/Script/MotionPlatform.xml @@ -42,7 +42,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/MultiplayerSyncRelay.xml b/templates/dkcr/Script/MultiplayerSyncRelay.xml index 313fde83..e75e6e2c 100644 --- a/templates/dkcr/Script/MultiplayerSyncRelay.xml +++ b/templates/dkcr/Script/MultiplayerSyncRelay.xml @@ -18,7 +18,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/MusicMaster.xml b/templates/dkcr/Script/MusicMaster.xml index fc32ec66..3ac802bd 100644 --- a/templates/dkcr/Script/MusicMaster.xml +++ b/templates/dkcr/Script/MusicMaster.xml @@ -52,7 +52,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/MusicTrack.xml b/templates/dkcr/Script/MusicTrack.xml index 993675b9..77ecc93c 100644 --- a/templates/dkcr/Script/MusicTrack.xml +++ b/templates/dkcr/Script/MusicTrack.xml @@ -58,7 +58,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/PathControl.xml b/templates/dkcr/Script/PathControl.xml index b8da0a1b..8e4952c8 100644 --- a/templates/dkcr/Script/PathControl.xml +++ b/templates/dkcr/Script/PathControl.xml @@ -19,7 +19,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/PickupRelay.xml b/templates/dkcr/Script/PickupRelay.xml index ab126dbe..cf37a3bd 100644 --- a/templates/dkcr/Script/PickupRelay.xml +++ b/templates/dkcr/Script/PickupRelay.xml @@ -19,7 +19,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/PirateCrabManager.xml b/templates/dkcr/Script/PirateCrabManager.xml index 75915b1b..937ded09 100644 --- a/templates/dkcr/Script/PirateCrabManager.xml +++ b/templates/dkcr/Script/PirateCrabManager.xml @@ -35,7 +35,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/Platform.xml b/templates/dkcr/Script/Platform.xml index 98b20df4..c8e5d275 100644 --- a/templates/dkcr/Script/Platform.xml +++ b/templates/dkcr/Script/Platform.xml @@ -111,7 +111,7 @@ 0xA3D63F44 0xC27FFA8F - 0x0FC966DC + 0x0FC966DC enabled enabled diff --git a/templates/dkcr/Script/PlayerHint.xml b/templates/dkcr/Script/PlayerHint.xml index b6b7ad4c..dbebb735 100644 --- a/templates/dkcr/Script/PlayerHint.xml +++ b/templates/dkcr/Script/PlayerHint.xml @@ -69,7 +69,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/PoiObject.xml b/templates/dkcr/Script/PoiObject.xml index e8aa7f40..067eb6f3 100644 --- a/templates/dkcr/Script/PoiObject.xml +++ b/templates/dkcr/Script/PoiObject.xml @@ -50,7 +50,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/PositionRelay.xml b/templates/dkcr/Script/PositionRelay.xml index a7bcda48..642bcbe0 100644 --- a/templates/dkcr/Script/PositionRelay.xml +++ b/templates/dkcr/Script/PositionRelay.xml @@ -18,7 +18,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/RSCL.xml b/templates/dkcr/Script/RSCL.xml index 74c6df3e..aab93e4c 100644 --- a/templates/dkcr/Script/RSCL.xml +++ b/templates/dkcr/Script/RSCL.xml @@ -60,7 +60,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/RadialDamage.xml b/templates/dkcr/Script/RadialDamage.xml index c1f530b2..c888f387 100644 --- a/templates/dkcr/Script/RadialDamage.xml +++ b/templates/dkcr/Script/RadialDamage.xml @@ -28,7 +28,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/RandomRelay.xml b/templates/dkcr/Script/RandomRelay.xml index c02e598b..171b9353 100644 --- a/templates/dkcr/Script/RandomRelay.xml +++ b/templates/dkcr/Script/RandomRelay.xml @@ -44,8 +44,8 @@ script/common/RandomRelay.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/dkcr/Script/Relay.xml b/templates/dkcr/Script/Relay.xml index bdc1aa3d..6c2f582f 100644 --- a/templates/dkcr/Script/Relay.xml +++ b/templates/dkcr/Script/Relay.xml @@ -19,8 +19,8 @@ script/common/Relay.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/dkcr/Script/Retronome.xml b/templates/dkcr/Script/Retronome.xml index 6ef5a562..d97fdf46 100644 --- a/templates/dkcr/Script/Retronome.xml +++ b/templates/dkcr/Script/Retronome.xml @@ -33,7 +33,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/ReviewControl.xml b/templates/dkcr/Script/ReviewControl.xml index d216064d..3dd15a0b 100644 --- a/templates/dkcr/Script/ReviewControl.xml +++ b/templates/dkcr/Script/ReviewControl.xml @@ -23,7 +23,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/RumbleEffect.xml b/templates/dkcr/Script/RumbleEffect.xml index f88cc30a..b6d4610c 100644 --- a/templates/dkcr/Script/RumbleEffect.xml +++ b/templates/dkcr/Script/RumbleEffect.xml @@ -59,7 +59,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/ScriptLayerController.xml b/templates/dkcr/Script/ScriptLayerController.xml index b499079c..103afc06 100644 --- a/templates/dkcr/Script/ScriptLayerController.xml +++ b/templates/dkcr/Script/ScriptLayerController.xml @@ -19,7 +19,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/SequenceTimer.xml b/templates/dkcr/Script/SequenceTimer.xml index c42a53d4..6d57a569 100644 --- a/templates/dkcr/Script/SequenceTimer.xml +++ b/templates/dkcr/Script/SequenceTimer.xml @@ -4,25 +4,32 @@ - 0 - Connection + Connection - - - Activation Time - - - - Always 0 - - - - Always 0 - - - + + 0 + + + Activation Time + + + 0.0 + + + 0 + Always 0 + + + 0 + + + 0 + Always 0 + + + - + 0.0 @@ -55,7 +62,7 @@ script/common/SequenceTimer.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/SkyboxModInca.xml b/templates/dkcr/Script/SkyboxModInca.xml index 05df6efc..3f9f94b8 100644 --- a/templates/dkcr/Script/SkyboxModInca.xml +++ b/templates/dkcr/Script/SkyboxModInca.xml @@ -19,7 +19,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/Sound.xml b/templates/dkcr/Script/Sound.xml index 8d9d414e..57df3a14 100644 --- a/templates/dkcr/Script/Sound.xml +++ b/templates/dkcr/Script/Sound.xml @@ -74,9 +74,9 @@ - script/common/Sound.txtr - - 0.5 + script/common/Sound.txtr + + 0.5 enabled enabled diff --git a/templates/dkcr/Script/SoundModifier.xml b/templates/dkcr/Script/SoundModifier.xml index 8b229f99..1bf1ed27 100644 --- a/templates/dkcr/Script/SoundModifier.xml +++ b/templates/dkcr/Script/SoundModifier.xml @@ -18,9 +18,9 @@ - script/common/SoundModifier.txtr - - 0.5 + script/common/SoundModifier.txtr + + 0.5 enabled enabled diff --git a/templates/dkcr/Script/SoundModifierData.xml b/templates/dkcr/Script/SoundModifierData.xml index 14e3f232..fa147c89 100644 --- a/templates/dkcr/Script/SoundModifierData.xml +++ b/templates/dkcr/Script/SoundModifierData.xml @@ -41,7 +41,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/SpecialFunction.xml b/templates/dkcr/Script/SpecialFunction.xml index 4e88bdb8..8196a90d 100644 --- a/templates/dkcr/Script/SpecialFunction.xml +++ b/templates/dkcr/Script/SpecialFunction.xml @@ -92,8 +92,8 @@ script/common/SpecialFunction.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/dkcr/Script/Spinner.xml b/templates/dkcr/Script/Spinner.xml index c7a59a41..69b1b86b 100644 --- a/templates/dkcr/Script/Spinner.xml +++ b/templates/dkcr/Script/Spinner.xml @@ -100,7 +100,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/SplinePath.xml b/templates/dkcr/Script/SplinePath.xml index dfb372c6..09eae401 100644 --- a/templates/dkcr/Script/SplinePath.xml +++ b/templates/dkcr/Script/SplinePath.xml @@ -7,9 +7,9 @@ false - - 1,0,1,1 - + + 1.0, 0.0, 1.0, 1.0 + @@ -22,7 +22,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/SplinePathNetwork.xml b/templates/dkcr/Script/SplinePathNetwork.xml index 89b8baaf..b3429d15 100644 --- a/templates/dkcr/Script/SplinePathNetwork.xml +++ b/templates/dkcr/Script/SplinePathNetwork.xml @@ -15,7 +15,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/SquawkPuzzleAlert.xml b/templates/dkcr/Script/SquawkPuzzleAlert.xml index 1683eafa..91fa3688 100644 --- a/templates/dkcr/Script/SquawkPuzzleAlert.xml +++ b/templates/dkcr/Script/SquawkPuzzleAlert.xml @@ -35,7 +35,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/StreamedAudio.xml b/templates/dkcr/Script/StreamedAudio.xml index ebaae287..2d274322 100644 --- a/templates/dkcr/Script/StreamedAudio.xml +++ b/templates/dkcr/Script/StreamedAudio.xml @@ -78,9 +78,9 @@ - script/common/StreamedAudio.txtr - - 0.5 + script/common/StreamedAudio.txtr + + 0.5 enabled enabled diff --git a/templates/dkcr/Script/StreamedAudioModifier.xml b/templates/dkcr/Script/StreamedAudioModifier.xml index a1c31df1..955b7317 100644 --- a/templates/dkcr/Script/StreamedAudioModifier.xml +++ b/templates/dkcr/Script/StreamedAudioModifier.xml @@ -26,7 +26,7 @@ script/common/StreamedAudioModifier.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/StreamedMovie.xml b/templates/dkcr/Script/StreamedMovie.xml index f6e1a604..793cfa7a 100644 --- a/templates/dkcr/Script/StreamedMovie.xml +++ b/templates/dkcr/Script/StreamedMovie.xml @@ -40,9 +40,9 @@ - script/common/StreamedMovie.txtr - - 0.5 + script/common/StreamedMovie.txtr + + 0.5 enabled enabled diff --git a/templates/dkcr/Script/Subtitles.xml b/templates/dkcr/Script/Subtitles.xml index afacd153..c8c24340 100644 --- a/templates/dkcr/Script/Subtitles.xml +++ b/templates/dkcr/Script/Subtitles.xml @@ -63,7 +63,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/SurfaceControl.xml b/templates/dkcr/Script/SurfaceControl.xml index df92fac8..64410671 100644 --- a/templates/dkcr/Script/SurfaceControl.xml +++ b/templates/dkcr/Script/SurfaceControl.xml @@ -26,7 +26,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/SwingRope.xml b/templates/dkcr/Script/SwingRope.xml index f340ba62..af42118b 100644 --- a/templates/dkcr/Script/SwingRope.xml +++ b/templates/dkcr/Script/SwingRope.xml @@ -105,7 +105,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/Switch.xml b/templates/dkcr/Script/Switch.xml index d6657a72..aa0218e4 100644 --- a/templates/dkcr/Script/Switch.xml +++ b/templates/dkcr/Script/Switch.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/TPND.xml b/templates/dkcr/Script/TPND.xml index 0ac9afcf..b7821876 100644 --- a/templates/dkcr/Script/TPND.xml +++ b/templates/dkcr/Script/TPND.xml @@ -43,8 +43,8 @@ - 0xC27FFA8F - + 0xC27FFA8F + enabled enabled diff --git a/templates/dkcr/Script/TextPane.xml b/templates/dkcr/Script/TextPane.xml index 57640a73..70705ee5 100644 --- a/templates/dkcr/Script/TextPane.xml +++ b/templates/dkcr/Script/TextPane.xml @@ -81,7 +81,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/TimeAttackEOLDisplay.xml b/templates/dkcr/Script/TimeAttackEOLDisplay.xml index 914b5a56..92e3d7ad 100644 --- a/templates/dkcr/Script/TimeAttackEOLDisplay.xml +++ b/templates/dkcr/Script/TimeAttackEOLDisplay.xml @@ -15,7 +15,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/TimeKeyframe.xml b/templates/dkcr/Script/TimeKeyframe.xml index 39a2c7bd..43121e91 100644 --- a/templates/dkcr/Script/TimeKeyframe.xml +++ b/templates/dkcr/Script/TimeKeyframe.xml @@ -18,7 +18,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/Timer.xml b/templates/dkcr/Script/Timer.xml index c165006a..1d3057f1 100644 --- a/templates/dkcr/Script/Timer.xml +++ b/templates/dkcr/Script/Timer.xml @@ -29,7 +29,7 @@ script/common/Timer.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/TrainSequence.xml b/templates/dkcr/Script/TrainSequence.xml index b9baf1b7..8b2805e0 100644 --- a/templates/dkcr/Script/TrainSequence.xml +++ b/templates/dkcr/Script/TrainSequence.xml @@ -25,7 +25,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/TrainTrackManager.xml b/templates/dkcr/Script/TrainTrackManager.xml index 77d94f17..232c1ec4 100644 --- a/templates/dkcr/Script/TrainTrackManager.xml +++ b/templates/dkcr/Script/TrainTrackManager.xml @@ -154,7 +154,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/TransitionScreen.xml b/templates/dkcr/Script/TransitionScreen.xml index 0f2f45d7..1abe13c7 100644 --- a/templates/dkcr/Script/TransitionScreen.xml +++ b/templates/dkcr/Script/TransitionScreen.xml @@ -29,7 +29,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/VolGroup.xml b/templates/dkcr/Script/VolGroup.xml index 159adbc0..b2ee4d21 100644 --- a/templates/dkcr/Script/VolGroup.xml +++ b/templates/dkcr/Script/VolGroup.xml @@ -22,7 +22,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/Waypoint.xml b/templates/dkcr/Script/Waypoint.xml index 1a5c167d..a3667954 100644 --- a/templates/dkcr/Script/Waypoint.xml +++ b/templates/dkcr/Script/Waypoint.xml @@ -15,8 +15,8 @@ - script/common/Waypoint.cmdl - + script/common/Waypoint.cmdl + enabled enabled diff --git a/templates/dkcr/Script/WorldAttributes.xml b/templates/dkcr/Script/WorldAttributes.xml index a1daeec9..9de120fc 100644 --- a/templates/dkcr/Script/WorldAttributes.xml +++ b/templates/dkcr/Script/WorldAttributes.xml @@ -25,7 +25,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Script/WorldLightFader.xml b/templates/dkcr/Script/WorldLightFader.xml index 71495206..fb13041e 100644 --- a/templates/dkcr/Script/WorldLightFader.xml +++ b/templates/dkcr/Script/WorldLightFader.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/dkcr/Structs/LayerID.xml b/templates/dkcr/Structs/LayerID.xml index 57a2012a..3c964dd2 100644 --- a/templates/dkcr/Structs/LayerID.xml +++ b/templates/dkcr/Structs/LayerID.xml @@ -1,9 +1,17 @@ - - - - + + 0 + + + 0 + + + 0 + + + 0 + diff --git a/templates/dkcr/Structs/LayerSwitch.xml b/templates/dkcr/Structs/LayerSwitch.xml index cfb457a9..eb9604f2 100644 --- a/templates/dkcr/Structs/LayerSwitch.xml +++ b/templates/dkcr/Structs/LayerSwitch.xml @@ -1,7 +1,9 @@ - - - - + + + + 0 + + diff --git a/templates/dkcr/Structs/LightParameters.xml b/templates/dkcr/Structs/LightParameters.xml index da90c281..437507ad 100644 --- a/templates/dkcr/Structs/LightParameters.xml +++ b/templates/dkcr/Structs/LightParameters.xml @@ -5,13 +5,13 @@ 1.0, 1.0, 1.0, 1.0 - 1 - - - - - - + 0x01 + + + + + + true diff --git a/templates/dkcr/Structs/MayaSpline.xml b/templates/dkcr/Structs/MayaSpline.xml index 59869570..d8759fcf 100644 --- a/templates/dkcr/Structs/MayaSpline.xml +++ b/templates/dkcr/Structs/MayaSpline.xml @@ -1,4 +1,4 @@ - + diff --git a/templates/dkcr/Structs/Transform.xml b/templates/dkcr/Structs/Transform.xml index 1fab3e98..5fe91767 100644 --- a/templates/dkcr/Structs/Transform.xml +++ b/templates/dkcr/Structs/Transform.xml @@ -1,14 +1,14 @@ - - - 0,0,0 - - - 0,0,0 - - - 1,1,1 - - + + + 0.0, 0.0, 0.0 + + + 0.0, 0.0, 0.0 + + + 1.0, 1.0, 1.0 + + diff --git a/templates/mp1/Enums/ControllerButton.xml b/templates/mp1/Enums/ControllerButton.xml index 1025f3d7..af880296 100644 --- a/templates/mp1/Enums/ControllerButton.xml +++ b/templates/mp1/Enums/ControllerButton.xml @@ -1,26 +1,26 @@ - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/templates/mp1/Enums/InventorySlot.xml b/templates/mp1/Enums/InventorySlot.xml index 8bdb3077..a28d4ddf 100644 --- a/templates/mp1/Enums/InventorySlot.xml +++ b/templates/mp1/Enums/InventorySlot.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/templates/mp1/Enums/PlayerAction.xml b/templates/mp1/Enums/PlayerAction.xml index 1b4bea78..e7e9c235 100644 --- a/templates/mp1/Enums/PlayerAction.xml +++ b/templates/mp1/Enums/PlayerAction.xml @@ -1,70 +1,70 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/templates/mp1/Enums/SpecialFunctionType.xml b/templates/mp1/Enums/SpecialFunctionType.xml index 248660f7..24df195f 100644 --- a/templates/mp1/Enums/SpecialFunctionType.xml +++ b/templates/mp1/Enums/SpecialFunctionType.xml @@ -1,22 +1,22 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/templates/mp1/Enums/VulnerabilityType.xml b/templates/mp1/Enums/VulnerabilityType.xml index ba38b04a..c6f59b49 100644 --- a/templates/mp1/Enums/VulnerabilityType.xml +++ b/templates/mp1/Enums/VulnerabilityType.xml @@ -1,12 +1,12 @@ - - - - - - - + + + + + + + diff --git a/templates/mp1/Enums/WeaponType.xml b/templates/mp1/Enums/WeaponType.xml index 16aa444b..421be247 100644 --- a/templates/mp1/Enums/WeaponType.xml +++ b/templates/mp1/Enums/WeaponType.xml @@ -1,20 +1,20 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/templates/mp1/Script/AIJumpPoint.xml b/templates/mp1/Script/AIJumpPoint.xml index bba4afd9..6d5b56be 100644 --- a/templates/mp1/Script/AIJumpPoint.xml +++ b/templates/mp1/Script/AIJumpPoint.xml @@ -8,6 +8,8 @@ + + diff --git a/templates/mp1/Script/AIKeyframe.xml b/templates/mp1/Script/AIKeyframe.xml index f2fe42d1..d4e17436 100644 --- a/templates/mp1/Script/AIKeyframe.xml +++ b/templates/mp1/Script/AIKeyframe.xml @@ -10,6 +10,8 @@ + + diff --git a/templates/mp1/Script/Actor.xml b/templates/mp1/Script/Actor.xml index 1a5231e1..9b4411e5 100644 --- a/templates/mp1/Script/Actor.xml +++ b/templates/mp1/Script/Actor.xml @@ -27,6 +27,8 @@ + + diff --git a/templates/mp1/Script/ActorContraption.xml b/templates/mp1/Script/ActorContraption.xml index 000f30c1..7a07a2a6 100644 --- a/templates/mp1/Script/ActorContraption.xml +++ b/templates/mp1/Script/ActorContraption.xml @@ -18,6 +18,8 @@ + + diff --git a/templates/mp1/Script/ActorKeyframe.xml b/templates/mp1/Script/ActorKeyframe.xml index 2ef9b660..76f14036 100644 --- a/templates/mp1/Script/ActorKeyframe.xml +++ b/templates/mp1/Script/ActorKeyframe.xml @@ -10,6 +10,8 @@ + + diff --git a/templates/mp1/Script/ActorRotate.xml b/templates/mp1/Script/ActorRotate.xml index c3edb663..66bae39f 100644 --- a/templates/mp1/Script/ActorRotate.xml +++ b/templates/mp1/Script/ActorRotate.xml @@ -9,6 +9,8 @@ + + diff --git a/templates/mp1/Script/AmbientAI.xml b/templates/mp1/Script/AmbientAI.xml index d1bc4fc7..74e2dd4c 100644 --- a/templates/mp1/Script/AmbientAI.xml +++ b/templates/mp1/Script/AmbientAI.xml @@ -19,6 +19,8 @@ + + diff --git a/templates/mp1/Script/AreaAttributes.xml b/templates/mp1/Script/AreaAttributes.xml index 5ebd47bf..2911ca80 100644 --- a/templates/mp1/Script/AreaAttributes.xml +++ b/templates/mp1/Script/AreaAttributes.xml @@ -12,11 +12,13 @@ + + - script/common/AreaAttributes.txtr - + script/common/AreaAttributes.txtr + disabled disabled diff --git a/templates/mp1/Script/AtomicAlpha.xml b/templates/mp1/Script/AtomicAlpha.xml index e69ff09c..6dd6fd47 100644 --- a/templates/mp1/Script/AtomicAlpha.xml +++ b/templates/mp1/Script/AtomicAlpha.xml @@ -17,6 +17,8 @@ + + diff --git a/templates/mp1/Script/AtomicBeta.xml b/templates/mp1/Script/AtomicBeta.xml index 18fc104b..ed66345f 100644 --- a/templates/mp1/Script/AtomicBeta.xml +++ b/templates/mp1/Script/AtomicBeta.xml @@ -24,6 +24,8 @@ + + diff --git a/templates/mp1/Script/Babygoth.xml b/templates/mp1/Script/Babygoth.xml index 77d9a50c..27afee7d 100644 --- a/templates/mp1/Script/Babygoth.xml +++ b/templates/mp1/Script/Babygoth.xml @@ -36,6 +36,8 @@ + + diff --git a/templates/mp1/Script/BallTrigger.xml b/templates/mp1/Script/BallTrigger.xml index c74c4485..7a358375 100644 --- a/templates/mp1/Script/BallTrigger.xml +++ b/templates/mp1/Script/BallTrigger.xml @@ -12,6 +12,8 @@ + + diff --git a/templates/mp1/Script/Beetle.xml b/templates/mp1/Script/Beetle.xml index 59cdd2c1..540fdfc7 100644 --- a/templates/mp1/Script/Beetle.xml +++ b/templates/mp1/Script/Beetle.xml @@ -19,6 +19,8 @@ + + diff --git a/templates/mp1/Script/BloodFlower.xml b/templates/mp1/Script/BloodFlower.xml index 4cc0311e..da70c600 100644 --- a/templates/mp1/Script/BloodFlower.xml +++ b/templates/mp1/Script/BloodFlower.xml @@ -21,6 +21,8 @@ + + diff --git a/templates/mp1/Script/Burrower.xml b/templates/mp1/Script/Burrower.xml index c1e139ba..d9ba611c 100644 --- a/templates/mp1/Script/Burrower.xml +++ b/templates/mp1/Script/Burrower.xml @@ -16,6 +16,8 @@ + + diff --git a/templates/mp1/Script/Camera.xml b/templates/mp1/Script/Camera.xml index 2224f058..dba50963 100644 --- a/templates/mp1/Script/Camera.xml +++ b/templates/mp1/Script/Camera.xml @@ -18,6 +18,8 @@ + + diff --git a/templates/mp1/Script/CameraBlurKeyframe.xml b/templates/mp1/Script/CameraBlurKeyframe.xml index a7fd2020..6a100351 100644 --- a/templates/mp1/Script/CameraBlurKeyframe.xml +++ b/templates/mp1/Script/CameraBlurKeyframe.xml @@ -10,6 +10,8 @@ + + diff --git a/templates/mp1/Script/CameraFilterKeyframe.xml b/templates/mp1/Script/CameraFilterKeyframe.xml index f06bcac6..e00a0080 100644 --- a/templates/mp1/Script/CameraFilterKeyframe.xml +++ b/templates/mp1/Script/CameraFilterKeyframe.xml @@ -13,6 +13,8 @@ + + diff --git a/templates/mp1/Script/CameraHint.xml b/templates/mp1/Script/CameraHint.xml index b3bc0d90..5f1048e0 100644 --- a/templates/mp1/Script/CameraHint.xml +++ b/templates/mp1/Script/CameraHint.xml @@ -101,6 +101,8 @@ + + diff --git a/templates/mp1/Script/CameraHintTrigger.xml b/templates/mp1/Script/CameraHintTrigger.xml index 720cb009..b91bfe59 100644 --- a/templates/mp1/Script/CameraHintTrigger.xml +++ b/templates/mp1/Script/CameraHintTrigger.xml @@ -10,6 +10,8 @@ + + diff --git a/templates/mp1/Script/CameraPitchVolume.xml b/templates/mp1/Script/CameraPitchVolume.xml index 9a8043d3..62165822 100644 --- a/templates/mp1/Script/CameraPitchVolume.xml +++ b/templates/mp1/Script/CameraPitchVolume.xml @@ -11,6 +11,8 @@ + + diff --git a/templates/mp1/Script/CameraShaker.xml b/templates/mp1/Script/CameraShaker.xml index f959c439..eefc8268 100644 --- a/templates/mp1/Script/CameraShaker.xml +++ b/templates/mp1/Script/CameraShaker.xml @@ -12,6 +12,8 @@ + + diff --git a/templates/mp1/Script/CameraWaypoint.xml b/templates/mp1/Script/CameraWaypoint.xml index 15b7f15c..5963f99f 100644 --- a/templates/mp1/Script/CameraWaypoint.xml +++ b/templates/mp1/Script/CameraWaypoint.xml @@ -9,6 +9,8 @@ + + @@ -18,7 +20,7 @@ script/common/CameraWaypoint.cmdl - 0.5 + 0.5 enabled enabled diff --git a/templates/mp1/Script/ChozoGhost.xml b/templates/mp1/Script/ChozoGhost.xml index 9819e43f..4f2049ee 100644 --- a/templates/mp1/Script/ChozoGhost.xml +++ b/templates/mp1/Script/ChozoGhost.xml @@ -34,6 +34,8 @@ + + diff --git a/templates/mp1/Script/ColorModulate.xml b/templates/mp1/Script/ColorModulate.xml index 6d229706..1b9a8815 100644 --- a/templates/mp1/Script/ColorModulate.xml +++ b/templates/mp1/Script/ColorModulate.xml @@ -15,6 +15,8 @@ + + diff --git a/templates/mp1/Script/ControllerAction.xml b/templates/mp1/Script/ControllerAction.xml index 71ebbfbc..af8fd10f 100644 --- a/templates/mp1/Script/ControllerAction.xml +++ b/templates/mp1/Script/ControllerAction.xml @@ -7,6 +7,8 @@ + + diff --git a/templates/mp1/Script/Counter.xml b/templates/mp1/Script/Counter.xml index a2e573c4..42edda39 100644 --- a/templates/mp1/Script/Counter.xml +++ b/templates/mp1/Script/Counter.xml @@ -8,6 +8,8 @@ + + diff --git a/templates/mp1/Script/CoverPoint.xml b/templates/mp1/Script/CoverPoint.xml index 0dd80871..092bd8ef 100644 --- a/templates/mp1/Script/CoverPoint.xml +++ b/templates/mp1/Script/CoverPoint.xml @@ -12,6 +12,8 @@ + + diff --git a/templates/mp1/Script/DamageableTrigger.xml b/templates/mp1/Script/DamageableTrigger.xml index 14b04e09..941089ad 100644 --- a/templates/mp1/Script/DamageableTrigger.xml +++ b/templates/mp1/Script/DamageableTrigger.xml @@ -9,11 +9,11 @@ - - - - - + + + + + @@ -25,6 +25,8 @@ + + @@ -33,8 +35,8 @@ - script/common/DamageableTrigger.txtr - + script/common/DamageableTrigger.txtr + disabled volume diff --git a/templates/mp1/Script/Debris.xml b/templates/mp1/Script/Debris.xml index 151f3d22..798e88f5 100644 --- a/templates/mp1/Script/Debris.xml +++ b/templates/mp1/Script/Debris.xml @@ -21,6 +21,8 @@ + + diff --git a/templates/mp1/Script/DebrisExtended.xml b/templates/mp1/Script/DebrisExtended.xml index ae485f00..4ef4dcd2 100644 --- a/templates/mp1/Script/DebrisExtended.xml +++ b/templates/mp1/Script/DebrisExtended.xml @@ -42,6 +42,8 @@ + + diff --git a/templates/mp1/Script/DebugCameraWaypoint.xml b/templates/mp1/Script/DebugCameraWaypoint.xml index 35f97064..d17fac7c 100644 --- a/templates/mp1/Script/DebugCameraWaypoint.xml +++ b/templates/mp1/Script/DebugCameraWaypoint.xml @@ -7,6 +7,8 @@ + + @@ -16,7 +18,7 @@ script/common/CameraWaypoint.cmdl - 0.5 + 0.5 enabled enabled diff --git a/templates/mp1/Script/DistanceFog.xml b/templates/mp1/Script/DistanceFog.xml index bba33966..d94ca664 100644 --- a/templates/mp1/Script/DistanceFog.xml +++ b/templates/mp1/Script/DistanceFog.xml @@ -21,13 +21,15 @@ + + - script/common/DistanceFog.txtr - + script/common/DistanceFog.txtr + disabled disabled diff --git a/templates/mp1/Script/Dock.xml b/templates/mp1/Script/Dock.xml index 5d02b1b9..366248a6 100644 --- a/templates/mp1/Script/Dock.xml +++ b/templates/mp1/Script/Dock.xml @@ -10,6 +10,8 @@ + + diff --git a/templates/mp1/Script/DockAreaChange.xml b/templates/mp1/Script/DockAreaChange.xml index 0efba785..c2deb5bc 100644 --- a/templates/mp1/Script/DockAreaChange.xml +++ b/templates/mp1/Script/DockAreaChange.xml @@ -6,6 +6,8 @@ + + diff --git a/templates/mp1/Script/DoorArea.xml b/templates/mp1/Script/DoorArea.xml index ecbaee9a..7af645e2 100644 --- a/templates/mp1/Script/DoorArea.xml +++ b/templates/mp1/Script/DoorArea.xml @@ -17,6 +17,8 @@ + + diff --git a/templates/mp1/Script/Drone.xml b/templates/mp1/Script/Drone.xml index 1e27272c..be8143c4 100644 --- a/templates/mp1/Script/Drone.xml +++ b/templates/mp1/Script/Drone.xml @@ -48,6 +48,8 @@ + + diff --git a/templates/mp1/Script/Effect.xml b/templates/mp1/Script/Effect.xml index 9f13d1c3..6680ff4a 100644 --- a/templates/mp1/Script/Effect.xml +++ b/templates/mp1/Script/Effect.xml @@ -27,6 +27,8 @@ + + diff --git a/templates/mp1/Script/ElectroMagneticPulse.xml b/templates/mp1/Script/ElectroMagneticPulse.xml index 57eeebf0..cb2deb48 100644 --- a/templates/mp1/Script/ElectroMagneticPulse.xml +++ b/templates/mp1/Script/ElectroMagneticPulse.xml @@ -15,6 +15,8 @@ + + diff --git a/templates/mp1/Script/ElitePirate.xml b/templates/mp1/Script/ElitePirate.xml index 040b0ef0..385fd2c7 100644 --- a/templates/mp1/Script/ElitePirate.xml +++ b/templates/mp1/Script/ElitePirate.xml @@ -45,6 +45,8 @@ + + diff --git a/templates/mp1/Script/EnergyBall.xml b/templates/mp1/Script/EnergyBall.xml index be82f596..52f00cf3 100644 --- a/templates/mp1/Script/EnergyBall.xml +++ b/templates/mp1/Script/EnergyBall.xml @@ -23,6 +23,8 @@ + + diff --git a/templates/mp1/Script/EnvFxDensityController.xml b/templates/mp1/Script/EnvFxDensityController.xml index 5e576eb0..fe9324fa 100644 --- a/templates/mp1/Script/EnvFxDensityController.xml +++ b/templates/mp1/Script/EnvFxDensityController.xml @@ -7,6 +7,8 @@ + + diff --git a/templates/mp1/Script/Eyeball.xml b/templates/mp1/Script/Eyeball.xml index a9ac6e37..d8318051 100644 --- a/templates/mp1/Script/Eyeball.xml +++ b/templates/mp1/Script/Eyeball.xml @@ -24,6 +24,8 @@ + + diff --git a/templates/mp1/Script/FireFlea.xml b/templates/mp1/Script/FireFlea.xml index 3ff6cd77..9acf179b 100644 --- a/templates/mp1/Script/FireFlea.xml +++ b/templates/mp1/Script/FireFlea.xml @@ -12,6 +12,8 @@ + + diff --git a/templates/mp1/Script/FishCloud.xml b/templates/mp1/Script/FishCloud.xml index e43e7483..a43ee832 100644 --- a/templates/mp1/Script/FishCloud.xml +++ b/templates/mp1/Script/FishCloud.xml @@ -39,6 +39,8 @@ + + diff --git a/templates/mp1/Script/FishCloudModifier.xml b/templates/mp1/Script/FishCloudModifier.xml index 2cd2de72..b11f78f3 100644 --- a/templates/mp1/Script/FishCloudModifier.xml +++ b/templates/mp1/Script/FishCloudModifier.xml @@ -10,6 +10,8 @@ + + diff --git a/templates/mp1/Script/Flaahgra.xml b/templates/mp1/Script/Flaahgra.xml index 9ba68e51..d01ef917 100644 --- a/templates/mp1/Script/Flaahgra.xml +++ b/templates/mp1/Script/Flaahgra.xml @@ -26,6 +26,8 @@ + + diff --git a/templates/mp1/Script/FlaahgraTentacle.xml b/templates/mp1/Script/FlaahgraTentacle.xml index f9f46e8e..8a88a592 100644 --- a/templates/mp1/Script/FlaahgraTentacle.xml +++ b/templates/mp1/Script/FlaahgraTentacle.xml @@ -9,6 +9,8 @@ + + diff --git a/templates/mp1/Script/FlickerBat.xml b/templates/mp1/Script/FlickerBat.xml index 45b9ee5a..59ed08c1 100644 --- a/templates/mp1/Script/FlickerBat.xml +++ b/templates/mp1/Script/FlickerBat.xml @@ -13,6 +13,8 @@ + + diff --git a/templates/mp1/Script/FlyingPirate.xml b/templates/mp1/Script/FlyingPirate.xml index a1d15f64..7e88cc92 100644 --- a/templates/mp1/Script/FlyingPirate.xml +++ b/templates/mp1/Script/FlyingPirate.xml @@ -39,6 +39,8 @@ + + diff --git a/templates/mp1/Script/FogVolume.xml b/templates/mp1/Script/FogVolume.xml index 0452e571..6117ce90 100644 --- a/templates/mp1/Script/FogVolume.xml +++ b/templates/mp1/Script/FogVolume.xml @@ -10,6 +10,8 @@ + + diff --git a/templates/mp1/Script/Geemer.xml b/templates/mp1/Script/Geemer.xml index 006e5d47..f1c417d2 100644 --- a/templates/mp1/Script/Geemer.xml +++ b/templates/mp1/Script/Geemer.xml @@ -19,6 +19,8 @@ + + diff --git a/templates/mp1/Script/Generator.xml b/templates/mp1/Script/Generator.xml index cd9d6abe..130e8c6c 100644 --- a/templates/mp1/Script/Generator.xml +++ b/templates/mp1/Script/Generator.xml @@ -11,6 +11,8 @@ + + diff --git a/templates/mp1/Script/GrapplePoint.xml b/templates/mp1/Script/GrapplePoint.xml index 6fe99901..0222383c 100644 --- a/templates/mp1/Script/GrapplePoint.xml +++ b/templates/mp1/Script/GrapplePoint.xml @@ -8,6 +8,8 @@ + + diff --git a/templates/mp1/Script/GunTurret.xml b/templates/mp1/Script/GunTurret.xml index 654380b1..6720ad19 100644 --- a/templates/mp1/Script/GunTurret.xml +++ b/templates/mp1/Script/GunTurret.xml @@ -51,6 +51,8 @@ + + diff --git a/templates/mp1/Script/HUDMemo.xml b/templates/mp1/Script/HUDMemo.xml index 5afb19d5..7d3cfcfb 100644 --- a/templates/mp1/Script/HUDMemo.xml +++ b/templates/mp1/Script/HUDMemo.xml @@ -7,13 +7,15 @@ - - + + + + diff --git a/templates/mp1/Script/IceSheegoth.xml b/templates/mp1/Script/IceSheegoth.xml index 6e54a651..a046261b 100644 --- a/templates/mp1/Script/IceSheegoth.xml +++ b/templates/mp1/Script/IceSheegoth.xml @@ -40,6 +40,8 @@ + + diff --git a/templates/mp1/Script/IceZoomer.xml b/templates/mp1/Script/IceZoomer.xml index f1e3c8fe..c80babbe 100644 --- a/templates/mp1/Script/IceZoomer.xml +++ b/templates/mp1/Script/IceZoomer.xml @@ -19,6 +19,8 @@ + + diff --git a/templates/mp1/Script/JellyZap.xml b/templates/mp1/Script/JellyZap.xml index 415e0b67..0baac76f 100644 --- a/templates/mp1/Script/JellyZap.xml +++ b/templates/mp1/Script/JellyZap.xml @@ -23,6 +23,8 @@ + + diff --git a/templates/mp1/Script/Magdolite.xml b/templates/mp1/Script/Magdolite.xml index 1d92c842..072a6f07 100644 --- a/templates/mp1/Script/Magdolite.xml +++ b/templates/mp1/Script/Magdolite.xml @@ -34,6 +34,8 @@ + + diff --git a/templates/mp1/Script/MazeNode.xml b/templates/mp1/Script/MazeNode.xml index 5d50466e..a37d246a 100644 --- a/templates/mp1/Script/MazeNode.xml +++ b/templates/mp1/Script/MazeNode.xml @@ -13,6 +13,8 @@ + + diff --git a/templates/mp1/Script/MemoryRelay.xml b/templates/mp1/Script/MemoryRelay.xml index bbea0564..1a61bda6 100644 --- a/templates/mp1/Script/MemoryRelay.xml +++ b/templates/mp1/Script/MemoryRelay.xml @@ -6,6 +6,8 @@ + + diff --git a/templates/mp1/Script/MetareeAlpha.xml b/templates/mp1/Script/MetareeAlpha.xml index 0e9dc969..cbe8bc16 100644 --- a/templates/mp1/Script/MetareeAlpha.xml +++ b/templates/mp1/Script/MetareeAlpha.xml @@ -15,6 +15,8 @@ + + diff --git a/templates/mp1/Script/MetroidAlpha.xml b/templates/mp1/Script/MetroidAlpha.xml index 9b0ee837..fbfab757 100644 --- a/templates/mp1/Script/MetroidAlpha.xml +++ b/templates/mp1/Script/MetroidAlpha.xml @@ -23,6 +23,8 @@ + + diff --git a/templates/mp1/Script/MetroidBeta.xml b/templates/mp1/Script/MetroidBeta.xml index 4994adc0..14b7f073 100644 --- a/templates/mp1/Script/MetroidBeta.xml +++ b/templates/mp1/Script/MetroidBeta.xml @@ -26,6 +26,8 @@ + + diff --git a/templates/mp1/Script/MetroidPrimeStage1.xml b/templates/mp1/Script/MetroidPrimeStage1.xml index d07c15ea..525a1c6f 100644 --- a/templates/mp1/Script/MetroidPrimeStage1.xml +++ b/templates/mp1/Script/MetroidPrimeStage1.xml @@ -77,6 +77,8 @@ + + diff --git a/templates/mp1/Script/MetroidPrimeStage2.xml b/templates/mp1/Script/MetroidPrimeStage2.xml index 630aaeb0..a5334460 100644 --- a/templates/mp1/Script/MetroidPrimeStage2.xml +++ b/templates/mp1/Script/MetroidPrimeStage2.xml @@ -14,6 +14,8 @@ + + diff --git a/templates/mp1/Script/Midi.xml b/templates/mp1/Script/Midi.xml index 2bbbbf40..758259ea 100644 --- a/templates/mp1/Script/Midi.xml +++ b/templates/mp1/Script/Midi.xml @@ -9,6 +9,8 @@ + + diff --git a/templates/mp1/Script/NewCameraShaker.xml b/templates/mp1/Script/NewCameraShaker.xml index faafcaf2..c108caf0 100644 --- a/templates/mp1/Script/NewCameraShaker.xml +++ b/templates/mp1/Script/NewCameraShaker.xml @@ -72,6 +72,8 @@ + + diff --git a/templates/mp1/Script/NewIntroBoss.xml b/templates/mp1/Script/NewIntroBoss.xml index 4368129d..a4d54cd6 100644 --- a/templates/mp1/Script/NewIntroBoss.xml +++ b/templates/mp1/Script/NewIntroBoss.xml @@ -16,6 +16,8 @@ + + diff --git a/templates/mp1/Script/Oculus.xml b/templates/mp1/Script/Oculus.xml index 08d7f3ea..11e2b0d6 100644 --- a/templates/mp1/Script/Oculus.xml +++ b/templates/mp1/Script/Oculus.xml @@ -18,6 +18,8 @@ + + diff --git a/templates/mp1/Script/OmegaPirate.xml b/templates/mp1/Script/OmegaPirate.xml index 67138202..3f85bf37 100644 --- a/templates/mp1/Script/OmegaPirate.xml +++ b/templates/mp1/Script/OmegaPirate.xml @@ -48,6 +48,8 @@ + + diff --git a/templates/mp1/Script/Parasite.xml b/templates/mp1/Script/Parasite.xml index 7a69050a..ba6f4716 100644 --- a/templates/mp1/Script/Parasite.xml +++ b/templates/mp1/Script/Parasite.xml @@ -28,6 +28,8 @@ + + diff --git a/templates/mp1/Script/PathCamera.xml b/templates/mp1/Script/PathCamera.xml index 9aacf253..6604033b 100644 --- a/templates/mp1/Script/PathCamera.xml +++ b/templates/mp1/Script/PathCamera.xml @@ -23,6 +23,8 @@ + + diff --git a/templates/mp1/Script/PhazonHealingNodule.xml b/templates/mp1/Script/PhazonHealingNodule.xml index c782db0e..ec5b39af 100644 --- a/templates/mp1/Script/PhazonHealingNodule.xml +++ b/templates/mp1/Script/PhazonHealingNodule.xml @@ -12,6 +12,8 @@ + + diff --git a/templates/mp1/Script/PhazonPool.xml b/templates/mp1/Script/PhazonPool.xml index b896506f..4f1882c5 100644 --- a/templates/mp1/Script/PhazonPool.xml +++ b/templates/mp1/Script/PhazonPool.xml @@ -21,6 +21,8 @@ + + diff --git a/templates/mp1/Script/Pickup.xml b/templates/mp1/Script/Pickup.xml index e5794270..17c78200 100644 --- a/templates/mp1/Script/Pickup.xml +++ b/templates/mp1/Script/Pickup.xml @@ -21,6 +21,8 @@ + + diff --git a/templates/mp1/Script/PickupGenerator.xml b/templates/mp1/Script/PickupGenerator.xml index 16fc3441..4f7ac440 100644 --- a/templates/mp1/Script/PickupGenerator.xml +++ b/templates/mp1/Script/PickupGenerator.xml @@ -7,6 +7,8 @@ + + diff --git a/templates/mp1/Script/Platform.xml b/templates/mp1/Script/Platform.xml index f0725743..732062de 100644 --- a/templates/mp1/Script/Platform.xml +++ b/templates/mp1/Script/Platform.xml @@ -22,6 +22,8 @@ + + diff --git a/templates/mp1/Script/PlayerActor.xml b/templates/mp1/Script/PlayerActor.xml index 5aad90a4..4f21c601 100644 --- a/templates/mp1/Script/PlayerActor.xml +++ b/templates/mp1/Script/PlayerActor.xml @@ -30,6 +30,8 @@ + + @@ -39,7 +41,7 @@ - 0x0B + 0x0B 0x0A 0x0C:0x02 0x0C:0x04 diff --git a/templates/mp1/Script/PlayerHint.xml b/templates/mp1/Script/PlayerHint.xml index ff13912d..a1fee1e4 100644 --- a/templates/mp1/Script/PlayerHint.xml +++ b/templates/mp1/Script/PlayerHint.xml @@ -9,6 +9,8 @@ + + diff --git a/templates/mp1/Script/PlayerStateChange.xml b/templates/mp1/Script/PlayerStateChange.xml index 800d25e9..c48296c0 100644 --- a/templates/mp1/Script/PlayerStateChange.xml +++ b/templates/mp1/Script/PlayerStateChange.xml @@ -10,6 +10,8 @@ + + diff --git a/templates/mp1/Script/PointOfInterest.xml b/templates/mp1/Script/PointOfInterest.xml index d20ba484..182fc9b0 100644 --- a/templates/mp1/Script/PointOfInterest.xml +++ b/templates/mp1/Script/PointOfInterest.xml @@ -13,6 +13,8 @@ + + diff --git a/templates/mp1/Script/PuddleSpore.xml b/templates/mp1/Script/PuddleSpore.xml index 0c62ee42..7736fb02 100644 --- a/templates/mp1/Script/PuddleSpore.xml +++ b/templates/mp1/Script/PuddleSpore.xml @@ -19,6 +19,8 @@ + + diff --git a/templates/mp1/Script/PuddleToadGamma.xml b/templates/mp1/Script/PuddleToadGamma.xml index 6d142839..004d7ea0 100644 --- a/templates/mp1/Script/PuddleToadGamma.xml +++ b/templates/mp1/Script/PuddleToadGamma.xml @@ -20,6 +20,8 @@ + + diff --git a/templates/mp1/Script/Puffer.xml b/templates/mp1/Script/Puffer.xml index 59407913..dcb38e6a 100644 --- a/templates/mp1/Script/Puffer.xml +++ b/templates/mp1/Script/Puffer.xml @@ -19,6 +19,8 @@ + + diff --git a/templates/mp1/Script/RadialDamage.xml b/templates/mp1/Script/RadialDamage.xml index 4ee58aba..20216a1d 100644 --- a/templates/mp1/Script/RadialDamage.xml +++ b/templates/mp1/Script/RadialDamage.xml @@ -8,6 +8,8 @@ + + diff --git a/templates/mp1/Script/RandomRelay.xml b/templates/mp1/Script/RandomRelay.xml index 565f41c6..b969b068 100644 --- a/templates/mp1/Script/RandomRelay.xml +++ b/templates/mp1/Script/RandomRelay.xml @@ -8,6 +8,8 @@ + + diff --git a/templates/mp1/Script/Relay.xml b/templates/mp1/Script/Relay.xml index 8f5cff12..2fcb59dd 100644 --- a/templates/mp1/Script/Relay.xml +++ b/templates/mp1/Script/Relay.xml @@ -5,6 +5,8 @@ + + diff --git a/templates/mp1/Script/Repulsor.xml b/templates/mp1/Script/Repulsor.xml index 9f049ad1..ef95b587 100644 --- a/templates/mp1/Script/Repulsor.xml +++ b/templates/mp1/Script/Repulsor.xml @@ -7,6 +7,8 @@ + + diff --git a/templates/mp1/Script/Ridley.xml b/templates/mp1/Script/Ridley.xml index f7a2ab76..0b7d5ac0 100644 --- a/templates/mp1/Script/Ridley.xml +++ b/templates/mp1/Script/Ridley.xml @@ -71,6 +71,8 @@ + + diff --git a/templates/mp1/Script/Ripper.xml b/templates/mp1/Script/Ripper.xml index db5bf0a2..26b2e986 100644 --- a/templates/mp1/Script/Ripper.xml +++ b/templates/mp1/Script/Ripper.xml @@ -11,6 +11,8 @@ + + diff --git a/templates/mp1/Script/Ripple.xml b/templates/mp1/Script/Ripple.xml index 5e73dddc..b85d6eb0 100644 --- a/templates/mp1/Script/Ripple.xml +++ b/templates/mp1/Script/Ripple.xml @@ -7,6 +7,8 @@ + + diff --git a/templates/mp1/Script/RoomAcoustics.xml b/templates/mp1/Script/RoomAcoustics.xml index d8b84a81..3536426b 100644 --- a/templates/mp1/Script/RoomAcoustics.xml +++ b/templates/mp1/Script/RoomAcoustics.xml @@ -35,6 +35,8 @@ + + diff --git a/templates/mp1/Script/RumbleEffect.xml b/templates/mp1/Script/RumbleEffect.xml index fd4266c8..2ed5ec73 100644 --- a/templates/mp1/Script/RumbleEffect.xml +++ b/templates/mp1/Script/RumbleEffect.xml @@ -14,6 +14,8 @@ + + diff --git a/templates/mp1/Script/ScriptBeam.xml b/templates/mp1/Script/ScriptBeam.xml index ed585af7..e93eb552 100644 --- a/templates/mp1/Script/ScriptBeam.xml +++ b/templates/mp1/Script/ScriptBeam.xml @@ -29,6 +29,8 @@ + + diff --git a/templates/mp1/Script/Seedling.xml b/templates/mp1/Script/Seedling.xml index 8ea99e70..8100a94d 100644 --- a/templates/mp1/Script/Seedling.xml +++ b/templates/mp1/Script/Seedling.xml @@ -17,6 +17,8 @@ + + diff --git a/templates/mp1/Script/ShadowProjector.xml b/templates/mp1/Script/ShadowProjector.xml index 84d1cdae..ce5243a6 100644 --- a/templates/mp1/Script/ShadowProjector.xml +++ b/templates/mp1/Script/ShadowProjector.xml @@ -13,6 +13,8 @@ + + diff --git a/templates/mp1/Script/SnakeWeedSwarm.xml b/templates/mp1/Script/SnakeWeedSwarm.xml index d17a1ab6..81f20a1d 100644 --- a/templates/mp1/Script/SnakeWeedSwarm.xml +++ b/templates/mp1/Script/SnakeWeedSwarm.xml @@ -28,6 +28,8 @@ + + diff --git a/templates/mp1/Script/Sound.xml b/templates/mp1/Script/Sound.xml index fdcdbd05..4d169a22 100644 --- a/templates/mp1/Script/Sound.xml +++ b/templates/mp1/Script/Sound.xml @@ -23,6 +23,8 @@ + + @@ -30,8 +32,8 @@ - script/common/Sound.txtr - + script/common/Sound.txtr + enabled disabled diff --git a/templates/mp1/Script/SpacePirate.xml b/templates/mp1/Script/SpacePirate.xml index 4457c180..d249aafa 100644 --- a/templates/mp1/Script/SpacePirate.xml +++ b/templates/mp1/Script/SpacePirate.xml @@ -39,6 +39,8 @@ + + diff --git a/templates/mp1/Script/SpankWeed.xml b/templates/mp1/Script/SpankWeed.xml index 551f5e2b..9aa4c749 100644 --- a/templates/mp1/Script/SpankWeed.xml +++ b/templates/mp1/Script/SpankWeed.xml @@ -14,6 +14,8 @@ + + diff --git a/templates/mp1/Script/SpawnPoint.xml b/templates/mp1/Script/SpawnPoint.xml index 0cd3196c..15d72a2e 100644 --- a/templates/mp1/Script/SpawnPoint.xml +++ b/templates/mp1/Script/SpawnPoint.xml @@ -38,6 +38,8 @@ + + diff --git a/templates/mp1/Script/SpecialFunction.xml b/templates/mp1/Script/SpecialFunction.xml index 1ee3dc14..90b5c6a4 100644 --- a/templates/mp1/Script/SpecialFunction.xml +++ b/templates/mp1/Script/SpecialFunction.xml @@ -23,6 +23,8 @@ + + diff --git a/templates/mp1/Script/SpiderBallAttractionSurface.xml b/templates/mp1/Script/SpiderBallAttractionSurface.xml index 276884af..f974fc11 100644 --- a/templates/mp1/Script/SpiderBallAttractionSurface.xml +++ b/templates/mp1/Script/SpiderBallAttractionSurface.xml @@ -8,6 +8,8 @@ + + diff --git a/templates/mp1/Script/SpiderBallWaypoint.xml b/templates/mp1/Script/SpiderBallWaypoint.xml index 605be6ee..c3657430 100644 --- a/templates/mp1/Script/SpiderBallWaypoint.xml +++ b/templates/mp1/Script/SpiderBallWaypoint.xml @@ -8,6 +8,8 @@ + + @@ -17,7 +19,7 @@ script/common/SpiderBallWaypoint.cmdl - 0.5 + 0.5 enabled enabled diff --git a/templates/mp1/Script/SpindleCamera.xml b/templates/mp1/Script/SpindleCamera.xml index 6f5ed424..0431e0c1 100644 --- a/templates/mp1/Script/SpindleCamera.xml +++ b/templates/mp1/Script/SpindleCamera.xml @@ -27,6 +27,8 @@ + + diff --git a/templates/mp1/Script/Steam.xml b/templates/mp1/Script/Steam.xml index 6c27629b..9e79dfde 100644 --- a/templates/mp1/Script/Steam.xml +++ b/templates/mp1/Script/Steam.xml @@ -24,6 +24,8 @@ + + diff --git a/templates/mp1/Script/StreamedAudio.xml b/templates/mp1/Script/StreamedAudio.xml index e512c1be..29d0c210 100644 --- a/templates/mp1/Script/StreamedAudio.xml +++ b/templates/mp1/Script/StreamedAudio.xml @@ -12,14 +12,16 @@ + + - script/common/StreamedAudio.txtr - + script/common/StreamedAudio.txtr + disabled disabled diff --git a/templates/mp1/Script/Switch.xml b/templates/mp1/Script/Switch.xml index 582f7c3a..82a379a6 100644 --- a/templates/mp1/Script/Switch.xml +++ b/templates/mp1/Script/Switch.xml @@ -7,6 +7,8 @@ + + diff --git a/templates/mp1/Script/TargetingPoint.xml b/templates/mp1/Script/TargetingPoint.xml index 3d2988ee..1b437f8b 100644 --- a/templates/mp1/Script/TargetingPoint.xml +++ b/templates/mp1/Script/TargetingPoint.xml @@ -7,6 +7,8 @@ + + diff --git a/templates/mp1/Script/TeamAIMgr.xml b/templates/mp1/Script/TeamAIMgr.xml index aa907e7f..5c0d5f8d 100644 --- a/templates/mp1/Script/TeamAIMgr.xml +++ b/templates/mp1/Script/TeamAIMgr.xml @@ -13,6 +13,8 @@ + + diff --git a/templates/mp1/Script/Thardus.xml b/templates/mp1/Script/Thardus.xml index f9665728..1808ef45 100644 --- a/templates/mp1/Script/Thardus.xml +++ b/templates/mp1/Script/Thardus.xml @@ -47,6 +47,8 @@ + + diff --git a/templates/mp1/Script/ThardusRockProjectile.xml b/templates/mp1/Script/ThardusRockProjectile.xml index 73824dc6..b4ea83b4 100644 --- a/templates/mp1/Script/ThardusRockProjectile.xml +++ b/templates/mp1/Script/ThardusRockProjectile.xml @@ -14,6 +14,8 @@ + + diff --git a/templates/mp1/Script/ThermalHeatFader.xml b/templates/mp1/Script/ThermalHeatFader.xml index c70b22b0..b1f5e199 100644 --- a/templates/mp1/Script/ThermalHeatFader.xml +++ b/templates/mp1/Script/ThermalHeatFader.xml @@ -7,6 +7,8 @@ + + diff --git a/templates/mp1/Script/Timer.xml b/templates/mp1/Script/Timer.xml index b855bf88..8f9ad78e 100644 --- a/templates/mp1/Script/Timer.xml +++ b/templates/mp1/Script/Timer.xml @@ -9,6 +9,8 @@ + + diff --git a/templates/mp1/Script/Trigger.xml b/templates/mp1/Script/Trigger.xml index ddbf452f..cd1f4cb3 100644 --- a/templates/mp1/Script/Trigger.xml +++ b/templates/mp1/Script/Trigger.xml @@ -25,6 +25,8 @@ + + diff --git a/templates/mp1/Script/Tryclops.xml b/templates/mp1/Script/Tryclops.xml index 2ab4daaf..f4d93ab2 100644 --- a/templates/mp1/Script/Tryclops.xml +++ b/templates/mp1/Script/Tryclops.xml @@ -13,6 +13,8 @@ + + diff --git a/templates/mp1/Script/VisorFlare.xml b/templates/mp1/Script/VisorFlare.xml index ad9461ad..cb4738b9 100644 --- a/templates/mp1/Script/VisorFlare.xml +++ b/templates/mp1/Script/VisorFlare.xml @@ -17,14 +17,16 @@ + + - script/common/VisorFlare.txtr - + script/common/VisorFlare.txtr + disabled disabled diff --git a/templates/mp1/Script/VisorGoo.xml b/templates/mp1/Script/VisorGoo.xml index 4b8ea23b..4b37c5f2 100644 --- a/templates/mp1/Script/VisorGoo.xml +++ b/templates/mp1/Script/VisorGoo.xml @@ -14,14 +14,16 @@ + + - script/common/VisorGoo.txtr - + script/common/VisorGoo.txtr + disabled disabled diff --git a/templates/mp1/Script/WallCrawlerSwarm.xml b/templates/mp1/Script/WallCrawlerSwarm.xml index 005ae593..5a33a999 100644 --- a/templates/mp1/Script/WallCrawlerSwarm.xml +++ b/templates/mp1/Script/WallCrawlerSwarm.xml @@ -42,6 +42,8 @@ + + diff --git a/templates/mp1/Script/Warwasp.xml b/templates/mp1/Script/Warwasp.xml index 802b3032..8bcc8d9d 100644 --- a/templates/mp1/Script/Warwasp.xml +++ b/templates/mp1/Script/Warwasp.xml @@ -16,6 +16,8 @@ + + diff --git a/templates/mp1/Script/Water.xml b/templates/mp1/Script/Water.xml index f8fab3c1..bd09d1b1 100644 --- a/templates/mp1/Script/Water.xml +++ b/templates/mp1/Script/Water.xml @@ -56,8 +56,8 @@ - This particle plays when an actor/projectile enters the water. It also plays when the morph ball is rolling in it at surface level. - + This particle plays when an actor/projectile enters the water. It also plays when the morph ball is rolling in it at surface level. + @@ -88,12 +88,14 @@ + + - + disabled diff --git a/templates/mp1/Script/Waypoint.xml b/templates/mp1/Script/Waypoint.xml index 384b49e0..1c42b350 100644 --- a/templates/mp1/Script/Waypoint.xml +++ b/templates/mp1/Script/Waypoint.xml @@ -16,6 +16,8 @@ + + @@ -25,7 +27,7 @@ script/common/Waypoint.CMDL - 0.5 + 0.5 enabled enabled diff --git a/templates/mp1/Script/WorldLightFader.xml b/templates/mp1/Script/WorldLightFader.xml index fd242fe6..fe011ce5 100644 --- a/templates/mp1/Script/WorldLightFader.xml +++ b/templates/mp1/Script/WorldLightFader.xml @@ -7,6 +7,8 @@ + + diff --git a/templates/mp1/Script/WorldTeleporter.xml b/templates/mp1/Script/WorldTeleporter.xml index e6087f63..989bfcf8 100644 --- a/templates/mp1/Script/WorldTeleporter.xml +++ b/templates/mp1/Script/WorldTeleporter.xml @@ -24,6 +24,8 @@ + + diff --git a/templates/mp1/Structs/ActorParameters.xml b/templates/mp1/Structs/ActorParameters.xml index 08f8a2b6..9ee1a9d1 100644 --- a/templates/mp1/Structs/ActorParameters.xml +++ b/templates/mp1/Structs/ActorParameters.xml @@ -1,5 +1,5 @@ - + diff --git a/templates/mp1/Structs/BehaveChance.xml b/templates/mp1/Structs/BehaveChance.xml index c3245b60..685354d1 100644 --- a/templates/mp1/Structs/BehaveChance.xml +++ b/templates/mp1/Structs/BehaveChance.xml @@ -1,5 +1,5 @@ - + diff --git a/templates/mp1/Structs/DamageInfo.xml b/templates/mp1/Structs/DamageInfo.xml index ae78a84c..20d781b3 100644 --- a/templates/mp1/Structs/DamageInfo.xml +++ b/templates/mp1/Structs/DamageInfo.xml @@ -1,5 +1,5 @@ - + diff --git a/templates/mp1/Structs/DamageVulnerability.xml b/templates/mp1/Structs/DamageVulnerability.xml index c31042d2..b9579252 100644 --- a/templates/mp1/Structs/DamageVulnerability.xml +++ b/templates/mp1/Structs/DamageVulnerability.xml @@ -1,5 +1,5 @@ - + diff --git a/templates/mp1/Structs/FlareDef.xml b/templates/mp1/Structs/FlareDef.xml index 8c0e8645..6df61f7f 100644 --- a/templates/mp1/Structs/FlareDef.xml +++ b/templates/mp1/Structs/FlareDef.xml @@ -1,5 +1,5 @@ - + diff --git a/templates/mp1/Structs/GrappleParameters.xml b/templates/mp1/Structs/GrappleParameters.xml index aa0496dc..49deb5a0 100644 --- a/templates/mp1/Structs/GrappleParameters.xml +++ b/templates/mp1/Structs/GrappleParameters.xml @@ -1,5 +1,5 @@ - + diff --git a/templates/mp1/Structs/HealthInfo.xml b/templates/mp1/Structs/HealthInfo.xml index bb1f85de..6a4dcefe 100644 --- a/templates/mp1/Structs/HealthInfo.xml +++ b/templates/mp1/Structs/HealthInfo.xml @@ -1,5 +1,5 @@ - + diff --git a/templates/mp1/Structs/LightParameters.xml b/templates/mp1/Structs/LightParameters.xml index 8f607f8c..28e9e1f3 100644 --- a/templates/mp1/Structs/LightParameters.xml +++ b/templates/mp1/Structs/LightParameters.xml @@ -1,5 +1,5 @@ - + @@ -9,13 +9,13 @@ - - - - - - - + + + + + + + diff --git a/templates/mp1/Structs/PatternedInfo.xml b/templates/mp1/Structs/PatternedInfo.xml index ce509af4..c55c257b 100644 --- a/templates/mp1/Structs/PatternedInfo.xml +++ b/templates/mp1/Structs/PatternedInfo.xml @@ -1,5 +1,5 @@ - + diff --git a/templates/mp1/Structs/PlayerHintStruct.xml b/templates/mp1/Structs/PlayerHintStruct.xml index 38667a11..639c1bca 100644 --- a/templates/mp1/Structs/PlayerHintStruct.xml +++ b/templates/mp1/Structs/PlayerHintStruct.xml @@ -1,5 +1,5 @@ - + diff --git a/templates/mp1/Structs/PrimeStruct1.xml b/templates/mp1/Structs/PrimeStruct1.xml index ca336575..1f27069c 100644 --- a/templates/mp1/Structs/PrimeStruct1.xml +++ b/templates/mp1/Structs/PrimeStruct1.xml @@ -1,5 +1,5 @@ - + diff --git a/templates/mp1/Structs/PrimeStruct2.xml b/templates/mp1/Structs/PrimeStruct2.xml index c19a69dd..d6cab502 100644 --- a/templates/mp1/Structs/PrimeStruct2.xml +++ b/templates/mp1/Structs/PrimeStruct2.xml @@ -1,5 +1,5 @@ - + diff --git a/templates/mp1/Structs/PrimeStruct3.xml b/templates/mp1/Structs/PrimeStruct3.xml index bcf8d385..d20c2636 100644 --- a/templates/mp1/Structs/PrimeStruct3.xml +++ b/templates/mp1/Structs/PrimeStruct3.xml @@ -1,5 +1,5 @@ - + diff --git a/templates/mp1/Structs/PrimeStruct4.xml b/templates/mp1/Structs/PrimeStruct4.xml index dd4d9e02..f076df19 100644 --- a/templates/mp1/Structs/PrimeStruct4.xml +++ b/templates/mp1/Structs/PrimeStruct4.xml @@ -1,5 +1,5 @@ - + diff --git a/templates/mp1/Structs/PrimeStruct6.xml b/templates/mp1/Structs/PrimeStruct6.xml index 68f8d730..88712655 100644 --- a/templates/mp1/Structs/PrimeStruct6.xml +++ b/templates/mp1/Structs/PrimeStruct6.xml @@ -1,5 +1,5 @@ - + diff --git a/templates/mp1/Structs/RidleyStruct2.xml b/templates/mp1/Structs/RidleyStruct2.xml index 8bd69391..6919a9af 100644 --- a/templates/mp1/Structs/RidleyStruct2.xml +++ b/templates/mp1/Structs/RidleyStruct2.xml @@ -1,5 +1,5 @@ - + diff --git a/templates/mp1/Structs/SpindleCameraStruct.xml b/templates/mp1/Structs/SpindleCameraStruct.xml index b7d063e3..162d4058 100644 --- a/templates/mp1/Structs/SpindleCameraStruct.xml +++ b/templates/mp1/Structs/SpindleCameraStruct.xml @@ -1,5 +1,5 @@ - + diff --git a/templates/mp1/Structs/VisorParameters.xml b/templates/mp1/Structs/VisorParameters.xml index e4e2e11e..f7fb069c 100644 --- a/templates/mp1/Structs/VisorParameters.xml +++ b/templates/mp1/Structs/VisorParameters.xml @@ -1,5 +1,5 @@ - + diff --git a/templates/mp2/Enums/Item.xml b/templates/mp2/Enums/Item.xml index 065700d6..9bbd9377 100644 --- a/templates/mp2/Enums/Item.xml +++ b/templates/mp2/Enums/Item.xml @@ -1,114 +1,114 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/templates/mp2/MasterTemplate.xml b/templates/mp2/MasterTemplate.xml index 9e99514c..cf521d8a 100644 --- a/templates/mp2/MasterTemplate.xml +++ b/templates/mp2/MasterTemplate.xml @@ -1,194 +1,194 @@ - - GameCube NTSC - Trilogy - + + GameCube NTSC + Trilogy + - - + - + - + - + + - - - + + + - - - + - - + + + + + + + + + + + + - - - - - - - - - + + - - - - + + + + + - - - + + - - - + + + + + + + + + - - - - - - - + + + - - + + - + + - + + + - - - - - - + + + - - + - + + - + + - - + + + - + + - - - - - + - + - - - - - - - - - - - + - + + + + + + + + + + + + + - - - - + - - - - + + + - + - - + + diff --git a/templates/mp2/Script/AIHint.xml b/templates/mp2/Script/AIHint.xml index ce54c290..b4127028 100644 --- a/templates/mp2/Script/AIHint.xml +++ b/templates/mp2/Script/AIHint.xml @@ -1,4 +1,4 @@ - + AIHint diff --git a/templates/mp2/Script/AIKeyframe.xml b/templates/mp2/Script/AIKeyframe.xml index 57baa682..85b24430 100644 --- a/templates/mp2/Script/AIKeyframe.xml +++ b/templates/mp2/Script/AIKeyframe.xml @@ -30,7 +30,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/AIMannedTurret.xml b/templates/mp2/Script/AIMannedTurret.xml index 54235a54..054032c5 100644 --- a/templates/mp2/Script/AIMannedTurret.xml +++ b/templates/mp2/Script/AIMannedTurret.xml @@ -76,7 +76,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/Actor.xml b/templates/mp2/Script/Actor.xml index ff71c570..494b77dd 100644 --- a/templates/mp2/Script/Actor.xml +++ b/templates/mp2/Script/Actor.xml @@ -36,7 +36,7 @@ false - never + never 0 @@ -78,7 +78,7 @@ 0xC27FFA8F 0x7E397FED:0xC0BA9E18 0x7E397FED:0x6B1FBC3A - 0x0FC966DC + 0x0FC966DC enabled enabled diff --git a/templates/mp2/Script/ActorKeyframe.xml b/templates/mp2/Script/ActorKeyframe.xml index 3929c29a..eaa5537c 100644 --- a/templates/mp2/Script/ActorKeyframe.xml +++ b/templates/mp2/Script/ActorKeyframe.xml @@ -30,7 +30,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/ActorRotate.xml b/templates/mp2/Script/ActorRotate.xml index 8a66bf60..da04867f 100644 --- a/templates/mp2/Script/ActorRotate.xml +++ b/templates/mp2/Script/ActorRotate.xml @@ -35,7 +35,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/AdvancedCounter.xml b/templates/mp2/Script/AdvancedCounter.xml index 05b3bae4..81db6e90 100644 --- a/templates/mp2/Script/AdvancedCounter.xml +++ b/templates/mp2/Script/AdvancedCounter.xml @@ -53,10 +53,10 @@ - + script/mp2/AdvancedCounter.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp2/Script/AreaAttributes.xml b/templates/mp2/Script/AreaAttributes.xml index f07e08c9..4624e45e 100644 --- a/templates/mp2/Script/AreaAttributes.xml +++ b/templates/mp2/Script/AreaAttributes.xml @@ -37,9 +37,9 @@ - script/common/AreaAttributes.txtr - - 0.5 + script/common/AreaAttributes.txtr + + 0.5 enabled enabled diff --git a/templates/mp2/Script/AreaDamage.xml b/templates/mp2/Script/AreaDamage.xml index dfd7cf51..751aefc0 100644 --- a/templates/mp2/Script/AreaDamage.xml +++ b/templates/mp2/Script/AreaDamage.xml @@ -22,7 +22,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/BallTrigger.xml b/templates/mp2/Script/BallTrigger.xml index 1f2ae531..3b56b0e7 100644 --- a/templates/mp2/Script/BallTrigger.xml +++ b/templates/mp2/Script/BallTrigger.xml @@ -30,10 +30,10 @@ false + + Trilogy + 1.0 - - Trilogy - diff --git a/templates/mp2/Script/CameraBlurKeyframe.xml b/templates/mp2/Script/CameraBlurKeyframe.xml index d21f378e..16df405b 100644 --- a/templates/mp2/Script/CameraBlurKeyframe.xml +++ b/templates/mp2/Script/CameraBlurKeyframe.xml @@ -30,7 +30,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/CameraFilterKeyframe.xml b/templates/mp2/Script/CameraFilterKeyframe.xml index 7c017e92..00a237c0 100644 --- a/templates/mp2/Script/CameraFilterKeyframe.xml +++ b/templates/mp2/Script/CameraFilterKeyframe.xml @@ -37,7 +37,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/CameraHint.xml b/templates/mp2/Script/CameraHint.xml index e5995945..1f2c2788 100644 --- a/templates/mp2/Script/CameraHint.xml +++ b/templates/mp2/Script/CameraHint.xml @@ -97,7 +97,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/CameraPitch.xml b/templates/mp2/Script/CameraPitch.xml index 18d251d9..16c48347 100644 --- a/templates/mp2/Script/CameraPitch.xml +++ b/templates/mp2/Script/CameraPitch.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/CameraShaker.xml b/templates/mp2/Script/CameraShaker.xml index f8e8b57e..283f44dc 100644 --- a/templates/mp2/Script/CameraShaker.xml +++ b/templates/mp2/Script/CameraShaker.xml @@ -16,7 +16,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/CannonBall.xml b/templates/mp2/Script/CannonBall.xml index 23fe75f9..03c6b26b 100644 --- a/templates/mp2/Script/CannonBall.xml +++ b/templates/mp2/Script/CannonBall.xml @@ -16,7 +16,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/ChozoGhost.xml b/templates/mp2/Script/ChozoGhost.xml index 0ecad804..681727e6 100644 --- a/templates/mp2/Script/ChozoGhost.xml +++ b/templates/mp2/Script/ChozoGhost.xml @@ -130,9 +130,6 @@ - - 0.0 - 100.0 diff --git a/templates/mp2/Script/ColorModulate.xml b/templates/mp2/Script/ColorModulate.xml index 8c32c365..c588b2a1 100644 --- a/templates/mp2/Script/ColorModulate.xml +++ b/templates/mp2/Script/ColorModulate.xml @@ -63,7 +63,7 @@ script/common/ColorModulate.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/ConditionalRelay.xml b/templates/mp2/Script/ConditionalRelay.xml index a9096fb1..56277eaa 100644 --- a/templates/mp2/Script/ConditionalRelay.xml +++ b/templates/mp2/Script/ConditionalRelay.xml @@ -45,7 +45,7 @@ script/common/ConditionalRelay.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/ControlHint.xml b/templates/mp2/Script/ControlHint.xml index d0ed1f6b..66026197 100644 --- a/templates/mp2/Script/ControlHint.xml +++ b/templates/mp2/Script/ControlHint.xml @@ -124,7 +124,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/ControllerAction.xml b/templates/mp2/Script/ControllerAction.xml index 69b74080..6b15876e 100644 --- a/templates/mp2/Script/ControllerAction.xml +++ b/templates/mp2/Script/ControllerAction.xml @@ -25,7 +25,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/Counter.xml b/templates/mp2/Script/Counter.xml index 79aa3a95..177f81e6 100644 --- a/templates/mp2/Script/Counter.xml +++ b/templates/mp2/Script/Counter.xml @@ -26,10 +26,10 @@ - + script/common/Counter.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp2/Script/CoverPoint.xml b/templates/mp2/Script/CoverPoint.xml index a35524af..059f09e2 100644 --- a/templates/mp2/Script/CoverPoint.xml +++ b/templates/mp2/Script/CoverPoint.xml @@ -30,7 +30,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/DamageActor.xml b/templates/mp2/Script/DamageActor.xml index 123df8ab..55a4adb9 100644 --- a/templates/mp2/Script/DamageActor.xml +++ b/templates/mp2/Script/DamageActor.xml @@ -16,7 +16,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/DamageableTrigger.xml b/templates/mp2/Script/DamageableTrigger.xml index 43f4564e..380b4840 100644 --- a/templates/mp2/Script/DamageableTrigger.xml +++ b/templates/mp2/Script/DamageableTrigger.xml @@ -27,8 +27,8 @@ - script/common/DamageableTrigger.txtr - + script/common/DamageableTrigger.txtr + enabled volume diff --git a/templates/mp2/Script/DarkSamusBattleStage.xml b/templates/mp2/Script/DarkSamusBattleStage.xml index 7de9a167..9d9195d1 100644 --- a/templates/mp2/Script/DarkSamusBattleStage.xml +++ b/templates/mp2/Script/DarkSamusBattleStage.xml @@ -140,7 +140,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/DistanceFog.xml b/templates/mp2/Script/DistanceFog.xml index b3e5432f..0171fb79 100644 --- a/templates/mp2/Script/DistanceFog.xml +++ b/templates/mp2/Script/DistanceFog.xml @@ -35,9 +35,9 @@ - script/common/DistanceFog.txtr - - 0.5 + script/common/DistanceFog.txtr + + 0.5 enabled enabled diff --git a/templates/mp2/Script/Dock.xml b/templates/mp2/Script/Dock.xml index c090c790..07f6115d 100644 --- a/templates/mp2/Script/Dock.xml +++ b/templates/mp2/Script/Dock.xml @@ -31,7 +31,7 @@ script/common/Dock.txtr - + enabled volume diff --git a/templates/mp2/Script/DynamicLight.xml b/templates/mp2/Script/DynamicLight.xml index b2cd5832..04c9d68a 100644 --- a/templates/mp2/Script/DynamicLight.xml +++ b/templates/mp2/Script/DynamicLight.xml @@ -86,7 +86,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/EMPulse.xml b/templates/mp2/Script/EMPulse.xml index 448f3377..c02bc998 100644 --- a/templates/mp2/Script/EMPulse.xml +++ b/templates/mp2/Script/EMPulse.xml @@ -43,7 +43,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/Effect.xml b/templates/mp2/Script/Effect.xml index d9a812ab..ac41c3c7 100644 --- a/templates/mp2/Script/Effect.xml +++ b/templates/mp2/Script/Effect.xml @@ -83,7 +83,7 @@ script/common/Effect.txtr - + enabled enabled diff --git a/templates/mp2/Script/EnvFxDensityController.xml b/templates/mp2/Script/EnvFxDensityController.xml index 05537af9..9bc9d147 100644 --- a/templates/mp2/Script/EnvFxDensityController.xml +++ b/templates/mp2/Script/EnvFxDensityController.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/FishCloudModifier.xml b/templates/mp2/Script/FishCloudModifier.xml index 0bcb1831..d5b49a65 100644 --- a/templates/mp2/Script/FishCloudModifier.xml +++ b/templates/mp2/Script/FishCloudModifier.xml @@ -30,7 +30,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/FogOverlay.xml b/templates/mp2/Script/FogOverlay.xml index 8d124cec..b212c63c 100644 --- a/templates/mp2/Script/FogOverlay.xml +++ b/templates/mp2/Script/FogOverlay.xml @@ -60,7 +60,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/ForgottenObject.xml b/templates/mp2/Script/ForgottenObject.xml index 400ed511..d519edad 100644 --- a/templates/mp2/Script/ForgottenObject.xml +++ b/templates/mp2/Script/ForgottenObject.xml @@ -15,7 +15,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/FrontEndDataNetwork.xml b/templates/mp2/Script/FrontEndDataNetwork.xml index 6dac93c2..439af277 100644 --- a/templates/mp2/Script/FrontEndDataNetwork.xml +++ b/templates/mp2/Script/FrontEndDataNetwork.xml @@ -79,7 +79,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/Generator.xml b/templates/mp2/Script/Generator.xml index 37e05b61..ea61df21 100644 --- a/templates/mp2/Script/Generator.xml +++ b/templates/mp2/Script/Generator.xml @@ -38,7 +38,7 @@ script/common/Generator.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/GrapplePoint.xml b/templates/mp2/Script/GrapplePoint.xml index a7c56f26..d9c47b63 100644 --- a/templates/mp2/Script/GrapplePoint.xml +++ b/templates/mp2/Script/GrapplePoint.xml @@ -17,8 +17,8 @@ script/common/GrapplePoint.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp2/Script/GuiMenu.xml b/templates/mp2/Script/GuiMenu.xml index 45066a8b..7883ac37 100644 --- a/templates/mp2/Script/GuiMenu.xml +++ b/templates/mp2/Script/GuiMenu.xml @@ -31,7 +31,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/GuiPlayerJoinManager.xml b/templates/mp2/Script/GuiPlayerJoinManager.xml index cde73bfa..263a17e5 100644 --- a/templates/mp2/Script/GuiPlayerJoinManager.xml +++ b/templates/mp2/Script/GuiPlayerJoinManager.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/GuiScreen.xml b/templates/mp2/Script/GuiScreen.xml index 73a48c2f..0e93630a 100644 --- a/templates/mp2/Script/GuiScreen.xml +++ b/templates/mp2/Script/GuiScreen.xml @@ -19,7 +19,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/GuiSlider.xml b/templates/mp2/Script/GuiSlider.xml index f71f90b3..048f3389 100644 --- a/templates/mp2/Script/GuiSlider.xml +++ b/templates/mp2/Script/GuiSlider.xml @@ -40,7 +40,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/GuiWidget.xml b/templates/mp2/Script/GuiWidget.xml index 36a98bab..f3d225bb 100644 --- a/templates/mp2/Script/GuiWidget.xml +++ b/templates/mp2/Script/GuiWidget.xml @@ -25,7 +25,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/HUDHint.xml b/templates/mp2/Script/HUDHint.xml index 6c711889..cdf8b5a5 100644 --- a/templates/mp2/Script/HUDHint.xml +++ b/templates/mp2/Script/HUDHint.xml @@ -36,7 +36,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/HUDMemo.xml b/templates/mp2/Script/HUDMemo.xml index c0c242c9..764cc556 100644 --- a/templates/mp2/Script/HUDMemo.xml +++ b/templates/mp2/Script/HUDMemo.xml @@ -44,8 +44,8 @@ script/common/HUDMemo.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp2/Script/IngSnatchingSwarm.xml b/templates/mp2/Script/IngSnatchingSwarm.xml index be872ac0..b0ba2584 100644 --- a/templates/mp2/Script/IngSnatchingSwarm.xml +++ b/templates/mp2/Script/IngSnatchingSwarm.xml @@ -93,7 +93,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/MemoryRelay.xml b/templates/mp2/Script/MemoryRelay.xml index 995ba1f7..dbea4d13 100644 --- a/templates/mp2/Script/MemoryRelay.xml +++ b/templates/mp2/Script/MemoryRelay.xml @@ -23,7 +23,7 @@ script/common/MemoryRelay.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/Midi.xml b/templates/mp2/Script/Midi.xml index a79b0ab5..4f9f79c8 100644 --- a/templates/mp2/Script/Midi.xml +++ b/templates/mp2/Script/Midi.xml @@ -25,7 +25,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/PathMeshCtrl.xml b/templates/mp2/Script/PathMeshCtrl.xml index 40696f82..f1137906 100644 --- a/templates/mp2/Script/PathMeshCtrl.xml +++ b/templates/mp2/Script/PathMeshCtrl.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/Pickup.xml b/templates/mp2/Script/Pickup.xml index e7e656f1..6ffa35c1 100644 --- a/templates/mp2/Script/Pickup.xml +++ b/templates/mp2/Script/Pickup.xml @@ -10,7 +10,7 @@ 0.0, 0.0, 0.0 - 0 + 0x00 1 diff --git a/templates/mp2/Script/PickupGenerator.xml b/templates/mp2/Script/PickupGenerator.xml index 2e9b1613..fd9d6844 100644 --- a/templates/mp2/Script/PickupGenerator.xml +++ b/templates/mp2/Script/PickupGenerator.xml @@ -26,7 +26,7 @@ script/common/PickupGenerator.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/Platform.xml b/templates/mp2/Script/Platform.xml index 78fd7b68..2755bfc7 100644 --- a/templates/mp2/Script/Platform.xml +++ b/templates/mp2/Script/Platform.xml @@ -71,7 +71,7 @@ 0xC27FFA8F 0x7E397FED:0xC0BA9E18 0x7E397FED:0x6B1FBC3A - 0x0FC966DC + 0x0FC966DC enabled enabled diff --git a/templates/mp2/Script/PlayerHint.xml b/templates/mp2/Script/PlayerHint.xml index 686dbe04..e7a05257 100644 --- a/templates/mp2/Script/PlayerHint.xml +++ b/templates/mp2/Script/PlayerHint.xml @@ -27,7 +27,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/PlayerStateChange.xml b/templates/mp2/Script/PlayerStateChange.xml index 6736a36b..e8e2a98e 100644 --- a/templates/mp2/Script/PlayerStateChange.xml +++ b/templates/mp2/Script/PlayerStateChange.xml @@ -30,7 +30,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/PlayerTurret.xml b/templates/mp2/Script/PlayerTurret.xml index a677692a..8e51c87b 100644 --- a/templates/mp2/Script/PlayerTurret.xml +++ b/templates/mp2/Script/PlayerTurret.xml @@ -64,7 +64,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/PointOfInterest.xml b/templates/mp2/Script/PointOfInterest.xml index 23301a98..810d89ee 100644 --- a/templates/mp2/Script/PointOfInterest.xml +++ b/templates/mp2/Script/PointOfInterest.xml @@ -23,8 +23,8 @@ script/common/PointOfInterest.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp2/Script/RadialDamage.xml b/templates/mp2/Script/RadialDamage.xml index c1f530b2..c888f387 100644 --- a/templates/mp2/Script/RadialDamage.xml +++ b/templates/mp2/Script/RadialDamage.xml @@ -28,7 +28,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/RandomRelay.xml b/templates/mp2/Script/RandomRelay.xml index 5a7beae1..35e0fbc3 100644 --- a/templates/mp2/Script/RandomRelay.xml +++ b/templates/mp2/Script/RandomRelay.xml @@ -29,7 +29,7 @@ script/common/RandomRelay.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/Relay.xml b/templates/mp2/Script/Relay.xml index 8608cf9a..6c2f582f 100644 --- a/templates/mp2/Script/Relay.xml +++ b/templates/mp2/Script/Relay.xml @@ -20,7 +20,7 @@ script/common/Relay.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/Repulsor.xml b/templates/mp2/Script/Repulsor.xml index b3e643bc..3f3e3e14 100644 --- a/templates/mp2/Script/Repulsor.xml +++ b/templates/mp2/Script/Repulsor.xml @@ -27,7 +27,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/Ripple.xml b/templates/mp2/Script/Ripple.xml index 7faf5148..d25bdad2 100644 --- a/templates/mp2/Script/Ripple.xml +++ b/templates/mp2/Script/Ripple.xml @@ -18,7 +18,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/RoomAcoustics.xml b/templates/mp2/Script/RoomAcoustics.xml index 49b37149..2a5b7ca7 100644 --- a/templates/mp2/Script/RoomAcoustics.xml +++ b/templates/mp2/Script/RoomAcoustics.xml @@ -174,7 +174,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/RsfAudio.xml b/templates/mp2/Script/RsfAudio.xml index bf875b3a..7abfd0d7 100644 --- a/templates/mp2/Script/RsfAudio.xml +++ b/templates/mp2/Script/RsfAudio.xml @@ -31,7 +31,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/RubiksPuzzle.xml b/templates/mp2/Script/RubiksPuzzle.xml index d2445c04..bca85826 100644 --- a/templates/mp2/Script/RubiksPuzzle.xml +++ b/templates/mp2/Script/RubiksPuzzle.xml @@ -23,7 +23,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/RumbleEffect.xml b/templates/mp2/Script/RumbleEffect.xml index 58ed8777..ec927e2f 100644 --- a/templates/mp2/Script/RumbleEffect.xml +++ b/templates/mp2/Script/RumbleEffect.xml @@ -24,7 +24,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/ScriptLayerController.xml b/templates/mp2/Script/ScriptLayerController.xml index 1a7f0a95..b76b2953 100644 --- a/templates/mp2/Script/ScriptLayerController.xml +++ b/templates/mp2/Script/ScriptLayerController.xml @@ -19,7 +19,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/SequenceTimer.xml b/templates/mp2/Script/SequenceTimer.xml index 72019d87..feb2541e 100644 --- a/templates/mp2/Script/SequenceTimer.xml +++ b/templates/mp2/Script/SequenceTimer.xml @@ -4,16 +4,21 @@ - 0 - Connection + Connection - - - - - - - + + 0 + + + + + 0.0 + + + + + false + @@ -48,7 +53,7 @@ script/common/SequenceTimer.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/ShadowProjector.xml b/templates/mp2/Script/ShadowProjector.xml index 39af7037..cb61e07b 100644 --- a/templates/mp2/Script/ShadowProjector.xml +++ b/templates/mp2/Script/ShadowProjector.xml @@ -36,7 +36,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/Silhouette.xml b/templates/mp2/Script/Silhouette.xml index c710837a..b80675b6 100644 --- a/templates/mp2/Script/Silhouette.xml +++ b/templates/mp2/Script/Silhouette.xml @@ -40,7 +40,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/SkyRipple.xml b/templates/mp2/Script/SkyRipple.xml index d468d1b4..0ab2f395 100644 --- a/templates/mp2/Script/SkyRipple.xml +++ b/templates/mp2/Script/SkyRipple.xml @@ -15,7 +15,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/Sound.xml b/templates/mp2/Script/Sound.xml index c3c0a9de..7b6b1e10 100644 --- a/templates/mp2/Script/Sound.xml +++ b/templates/mp2/Script/Sound.xml @@ -82,9 +82,9 @@ - script/common/Sound.txtr - - 0.5 + script/common/Sound.txtr + + 0.5 enabled enabled diff --git a/templates/mp2/Script/SoundModifier.xml b/templates/mp2/Script/SoundModifier.xml index 45c6f0df..7ed03883 100644 --- a/templates/mp2/Script/SoundModifier.xml +++ b/templates/mp2/Script/SoundModifier.xml @@ -28,9 +28,9 @@ - script/common/SoundModifier.txtr - - 0.5 + script/common/SoundModifier.txtr + + 0.5 enabled enabled diff --git a/templates/mp2/Script/SpawnPoint.xml b/templates/mp2/Script/SpawnPoint.xml index 820e8b21..5ccd434b 100644 --- a/templates/mp2/Script/SpawnPoint.xml +++ b/templates/mp2/Script/SpawnPoint.xml @@ -23,7 +23,7 @@ - 0.5559 + 0.5559 enabled enabled diff --git a/templates/mp2/Script/SpecialFunction.xml b/templates/mp2/Script/SpecialFunction.xml index 08394c43..d8750428 100644 --- a/templates/mp2/Script/SpecialFunction.xml +++ b/templates/mp2/Script/SpecialFunction.xml @@ -54,10 +54,10 @@ - + script/common/SpecialFunction.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp2/Script/SpiderBallAttractionSurface.xml b/templates/mp2/Script/SpiderBallAttractionSurface.xml index 9b00d0a5..140da75a 100644 --- a/templates/mp2/Script/SpiderBallAttractionSurface.xml +++ b/templates/mp2/Script/SpiderBallAttractionSurface.xml @@ -16,7 +16,7 @@ script/common/SpiderBallAttractionSurface.txtr - + enabled volume diff --git a/templates/mp2/Script/Spinner.xml b/templates/mp2/Script/Spinner.xml index 51375edd..fccc2e6d 100644 --- a/templates/mp2/Script/Spinner.xml +++ b/templates/mp2/Script/Spinner.xml @@ -48,7 +48,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/StreamedAudio.xml b/templates/mp2/Script/StreamedAudio.xml index 8ef1ccc8..f6fb1415 100644 --- a/templates/mp2/Script/StreamedAudio.xml +++ b/templates/mp2/Script/StreamedAudio.xml @@ -34,9 +34,9 @@ - script/common/StreamedAudio.txtr - - 0.5 + script/common/StreamedAudio.txtr + + 0.5 enabled enabled diff --git a/templates/mp2/Script/StreamedMovie.xml b/templates/mp2/Script/StreamedMovie.xml index 5abf6967..b0d53a31 100644 --- a/templates/mp2/Script/StreamedMovie.xml +++ b/templates/mp2/Script/StreamedMovie.xml @@ -37,9 +37,9 @@ - script/common/StreamedMovie.txtr - - 0.5 + script/common/StreamedMovie.txtr + + 0.5 enabled enabled diff --git a/templates/mp2/Script/Subtitle.xml b/templates/mp2/Script/Subtitle.xml index a9c03ef6..69051154 100644 --- a/templates/mp2/Script/Subtitle.xml +++ b/templates/mp2/Script/Subtitle.xml @@ -11,6 +11,9 @@ 0 + + Trilogy + 640 @@ -22,23 +25,20 @@ 1 - - Trilogy - + + Trilogy + 0 - - Trilogy - + + Trilogy + 100 - - Trilogy - - + 0 @@ -60,7 +60,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/Switch.xml b/templates/mp2/Script/Switch.xml index d6657a72..aa0218e4 100644 --- a/templates/mp2/Script/Switch.xml +++ b/templates/mp2/Script/Switch.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/TargetingPoint.xml b/templates/mp2/Script/TargetingPoint.xml index 2fcd7335..d2b3e6f4 100644 --- a/templates/mp2/Script/TargetingPoint.xml +++ b/templates/mp2/Script/TargetingPoint.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/TeamAI.xml b/templates/mp2/Script/TeamAI.xml index 24d703c4..f2f8e5d7 100644 --- a/templates/mp2/Script/TeamAI.xml +++ b/templates/mp2/Script/TeamAI.xml @@ -42,7 +42,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/TextPane.xml b/templates/mp2/Script/TextPane.xml index 475da4fa..1a862965 100644 --- a/templates/mp2/Script/TextPane.xml +++ b/templates/mp2/Script/TextPane.xml @@ -15,6 +15,9 @@ + + Trilogy + 80 @@ -23,9 +26,6 @@ 10 - - Trilogy - 0.0, 0.0, 0.0 @@ -62,7 +62,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/TimeKeyframe.xml b/templates/mp2/Script/TimeKeyframe.xml index 39a2c7bd..43121e91 100644 --- a/templates/mp2/Script/TimeKeyframe.xml +++ b/templates/mp2/Script/TimeKeyframe.xml @@ -18,7 +18,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/Timer.xml b/templates/mp2/Script/Timer.xml index a3659ad4..dc0347e9 100644 --- a/templates/mp2/Script/Timer.xml +++ b/templates/mp2/Script/Timer.xml @@ -28,8 +28,8 @@ script/common/Timer.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp2/Script/VisorFlare.xml b/templates/mp2/Script/VisorFlare.xml index 1bb8fd32..3d856284 100644 --- a/templates/mp2/Script/VisorFlare.xml +++ b/templates/mp2/Script/VisorFlare.xml @@ -86,9 +86,9 @@ - script/common/VisorFlare.txtr - - 0.5 + script/common/VisorFlare.txtr + + 0.5 enabled enabled diff --git a/templates/mp2/Script/VisorGoo.xml b/templates/mp2/Script/VisorGoo.xml index 07c6b957..4ab3f97b 100644 --- a/templates/mp2/Script/VisorGoo.xml +++ b/templates/mp2/Script/VisorGoo.xml @@ -46,9 +46,9 @@ - script/common/VisorGoo.txtr - - 0.5 + script/common/VisorGoo.txtr + + 0.5 enabled enabled diff --git a/templates/mp2/Script/WorldLightFader.xml b/templates/mp2/Script/WorldLightFader.xml index 71495206..fb13041e 100644 --- a/templates/mp2/Script/WorldLightFader.xml +++ b/templates/mp2/Script/WorldLightFader.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Script/WorldTeleporter.xml b/templates/mp2/Script/WorldTeleporter.xml index 7b4b7577..2e72a74d 100644 --- a/templates/mp2/Script/WorldTeleporter.xml +++ b/templates/mp2/Script/WorldTeleporter.xml @@ -81,7 +81,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2/Structs/LayerSwitch.xml b/templates/mp2/Structs/LayerSwitch.xml index cfb457a9..eb9604f2 100644 --- a/templates/mp2/Structs/LayerSwitch.xml +++ b/templates/mp2/Structs/LayerSwitch.xml @@ -1,7 +1,9 @@ - - - - + + + + 0 + + diff --git a/templates/mp2/Structs/LightParameters.xml b/templates/mp2/Structs/LightParameters.xml index 7543cbc2..3a5c6e42 100644 --- a/templates/mp2/Structs/LightParameters.xml +++ b/templates/mp2/Structs/LightParameters.xml @@ -23,13 +23,13 @@ true - 1 - - - - - - + 0x01 + + + + + + 1 diff --git a/templates/mp2/Structs/MayaSpline.xml b/templates/mp2/Structs/MayaSpline.xml index 59869570..d8759fcf 100644 --- a/templates/mp2/Structs/MayaSpline.xml +++ b/templates/mp2/Structs/MayaSpline.xml @@ -1,4 +1,4 @@ - + diff --git a/templates/mp2/Structs/TextProperties.xml b/templates/mp2/Structs/TextProperties.xml index d3d69d4e..a531fa89 100644 --- a/templates/mp2/Structs/TextProperties.xml +++ b/templates/mp2/Structs/TextProperties.xml @@ -8,24 +8,24 @@ 1 + + Trilogy + 100.0 - - Trilogy - + + Trilogy + 0 - - Trilogy - + + Trilogy + 0 - - Trilogy - - + 1.0, 1.0, 1.0, 1.0 diff --git a/templates/mp2/Structs/Transform.xml b/templates/mp2/Structs/Transform.xml index 1fab3e98..5fe91767 100644 --- a/templates/mp2/Structs/Transform.xml +++ b/templates/mp2/Structs/Transform.xml @@ -1,14 +1,14 @@ - - - 0,0,0 - - - 0,0,0 - - - 1,1,1 - - + + + 0.0, 0.0, 0.0 + + + 0.0, 0.0, 0.0 + + + 1.0, 1.0, 1.0 + + diff --git a/templates/mp2/Structs/WeaponVulnerability.xml b/templates/mp2/Structs/WeaponVulnerability.xml index ec3f5861..544b4c16 100644 --- a/templates/mp2/Structs/WeaponVulnerability.xml +++ b/templates/mp2/Structs/WeaponVulnerability.xml @@ -3,7 +3,7 @@ 100.0 - % + % 0 diff --git a/templates/mp2demo/MasterTemplate.xml b/templates/mp2demo/MasterTemplate.xml index a750d7eb..c6f1f166 100644 --- a/templates/mp2demo/MasterTemplate.xml +++ b/templates/mp2demo/MasterTemplate.xml @@ -1,155 +1,155 @@ - - + - + - + + + - - - + + + + - + - - - - + - - + + + + + + + - - - + + + - - - + - + + + + + + + + - - - - + - + - - - - - + + + + + + - - - + + + - - + + - + - - + + + - - - - + + + - - - - - - - - - - - + + + + + + + + + + + - + + - - - - + + + - + - - - - - - - - - + + diff --git a/templates/mp2demo/Script/AIKeyframe.xml b/templates/mp2demo/Script/AIKeyframe.xml index 57baa682..85b24430 100644 --- a/templates/mp2demo/Script/AIKeyframe.xml +++ b/templates/mp2demo/Script/AIKeyframe.xml @@ -30,7 +30,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/AIMannedTurret.xml b/templates/mp2demo/Script/AIMannedTurret.xml index bdb293d9..24b6d5b8 100644 --- a/templates/mp2demo/Script/AIMannedTurret.xml +++ b/templates/mp2demo/Script/AIMannedTurret.xml @@ -91,7 +91,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/ActorKeyframe.xml b/templates/mp2demo/Script/ActorKeyframe.xml index 3929c29a..eaa5537c 100644 --- a/templates/mp2demo/Script/ActorKeyframe.xml +++ b/templates/mp2demo/Script/ActorKeyframe.xml @@ -30,7 +30,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/ActorRotate.xml b/templates/mp2demo/Script/ActorRotate.xml index 8a66bf60..da04867f 100644 --- a/templates/mp2demo/Script/ActorRotate.xml +++ b/templates/mp2demo/Script/ActorRotate.xml @@ -35,7 +35,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/AreaAttributes.xml b/templates/mp2demo/Script/AreaAttributes.xml index 85f3c00f..21bcea8e 100644 --- a/templates/mp2demo/Script/AreaAttributes.xml +++ b/templates/mp2demo/Script/AreaAttributes.xml @@ -31,9 +31,9 @@ - script/common/AreaAttributes.txtr - - 0.5 + script/common/AreaAttributes.txtr + + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/AreaDamage.xml b/templates/mp2demo/Script/AreaDamage.xml index dfd7cf51..751aefc0 100644 --- a/templates/mp2demo/Script/AreaDamage.xml +++ b/templates/mp2demo/Script/AreaDamage.xml @@ -22,7 +22,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/CameraBlurKeyframe.xml b/templates/mp2demo/Script/CameraBlurKeyframe.xml index d21f378e..16df405b 100644 --- a/templates/mp2demo/Script/CameraBlurKeyframe.xml +++ b/templates/mp2demo/Script/CameraBlurKeyframe.xml @@ -30,7 +30,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/CameraFilterKeyframe.xml b/templates/mp2demo/Script/CameraFilterKeyframe.xml index 7c017e92..00a237c0 100644 --- a/templates/mp2demo/Script/CameraFilterKeyframe.xml +++ b/templates/mp2demo/Script/CameraFilterKeyframe.xml @@ -37,7 +37,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/CameraHint.xml b/templates/mp2demo/Script/CameraHint.xml index a19bcefd..17feb781 100644 --- a/templates/mp2demo/Script/CameraHint.xml +++ b/templates/mp2demo/Script/CameraHint.xml @@ -92,7 +92,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/CameraPitch.xml b/templates/mp2demo/Script/CameraPitch.xml index caef9165..e6ea10d9 100644 --- a/templates/mp2demo/Script/CameraPitch.xml +++ b/templates/mp2demo/Script/CameraPitch.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/CameraShaker.xml b/templates/mp2demo/Script/CameraShaker.xml index f8e8b57e..283f44dc 100644 --- a/templates/mp2demo/Script/CameraShaker.xml +++ b/templates/mp2demo/Script/CameraShaker.xml @@ -16,7 +16,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/CannonBall.xml b/templates/mp2demo/Script/CannonBall.xml index 23fe75f9..03c6b26b 100644 --- a/templates/mp2demo/Script/CannonBall.xml +++ b/templates/mp2demo/Script/CannonBall.xml @@ -16,7 +16,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/ColorModulate.xml b/templates/mp2demo/Script/ColorModulate.xml index 85807cbe..a04adb54 100644 --- a/templates/mp2demo/Script/ColorModulate.xml +++ b/templates/mp2demo/Script/ColorModulate.xml @@ -60,7 +60,7 @@ script/common/ColorModulate.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/ConditionalRelay.xml b/templates/mp2demo/Script/ConditionalRelay.xml index a9096fb1..56277eaa 100644 --- a/templates/mp2demo/Script/ConditionalRelay.xml +++ b/templates/mp2demo/Script/ConditionalRelay.xml @@ -45,7 +45,7 @@ script/common/ConditionalRelay.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/ControllerAction.xml b/templates/mp2demo/Script/ControllerAction.xml index 9d718e48..582e2712 100644 --- a/templates/mp2demo/Script/ControllerAction.xml +++ b/templates/mp2demo/Script/ControllerAction.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/Counter.xml b/templates/mp2demo/Script/Counter.xml index 628aaec9..7d92db31 100644 --- a/templates/mp2demo/Script/Counter.xml +++ b/templates/mp2demo/Script/Counter.xml @@ -23,10 +23,10 @@ - + script/common/Counter.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/CoverPoint.xml b/templates/mp2demo/Script/CoverPoint.xml index a35524af..059f09e2 100644 --- a/templates/mp2demo/Script/CoverPoint.xml +++ b/templates/mp2demo/Script/CoverPoint.xml @@ -30,7 +30,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/DamageableTrigger.xml b/templates/mp2demo/Script/DamageableTrigger.xml index 43f4564e..380b4840 100644 --- a/templates/mp2demo/Script/DamageableTrigger.xml +++ b/templates/mp2demo/Script/DamageableTrigger.xml @@ -27,8 +27,8 @@ - script/common/DamageableTrigger.txtr - + script/common/DamageableTrigger.txtr + enabled volume diff --git a/templates/mp2demo/Script/DistanceFog.xml b/templates/mp2demo/Script/DistanceFog.xml index b3e5432f..0171fb79 100644 --- a/templates/mp2demo/Script/DistanceFog.xml +++ b/templates/mp2demo/Script/DistanceFog.xml @@ -35,9 +35,9 @@ - script/common/DistanceFog.txtr - - 0.5 + script/common/DistanceFog.txtr + + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/Dock.xml b/templates/mp2demo/Script/Dock.xml index 0d3551b5..3319a0cd 100644 --- a/templates/mp2demo/Script/Dock.xml +++ b/templates/mp2demo/Script/Dock.xml @@ -28,7 +28,7 @@ script/common/Dock.txtr - + enabled volume diff --git a/templates/mp2demo/Script/DynamicLight.xml b/templates/mp2demo/Script/DynamicLight.xml index 5e47943f..5f36d862 100644 --- a/templates/mp2demo/Script/DynamicLight.xml +++ b/templates/mp2demo/Script/DynamicLight.xml @@ -86,7 +86,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/EMPulse.xml b/templates/mp2demo/Script/EMPulse.xml index 448f3377..c02bc998 100644 --- a/templates/mp2demo/Script/EMPulse.xml +++ b/templates/mp2demo/Script/EMPulse.xml @@ -43,7 +43,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/Effect.xml b/templates/mp2demo/Script/Effect.xml index 760baa22..646bd7e4 100644 --- a/templates/mp2demo/Script/Effect.xml +++ b/templates/mp2demo/Script/Effect.xml @@ -80,8 +80,8 @@ script/common/Effect.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/EnvFxDensityController.xml b/templates/mp2demo/Script/EnvFxDensityController.xml index 05537af9..9bc9d147 100644 --- a/templates/mp2demo/Script/EnvFxDensityController.xml +++ b/templates/mp2demo/Script/EnvFxDensityController.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/FishCloudModifier.xml b/templates/mp2demo/Script/FishCloudModifier.xml index 0bcb1831..d5b49a65 100644 --- a/templates/mp2demo/Script/FishCloudModifier.xml +++ b/templates/mp2demo/Script/FishCloudModifier.xml @@ -30,7 +30,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/FrontEndDataNetwork.xml b/templates/mp2demo/Script/FrontEndDataNetwork.xml index e42ea7b3..c83baae8 100644 --- a/templates/mp2demo/Script/FrontEndDataNetwork.xml +++ b/templates/mp2demo/Script/FrontEndDataNetwork.xml @@ -57,7 +57,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/Generator.xml b/templates/mp2demo/Script/Generator.xml index 37e05b61..ea61df21 100644 --- a/templates/mp2demo/Script/Generator.xml +++ b/templates/mp2demo/Script/Generator.xml @@ -38,7 +38,7 @@ script/common/Generator.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/GrapplePoint.xml b/templates/mp2demo/Script/GrapplePoint.xml index a7c56f26..d9c47b63 100644 --- a/templates/mp2demo/Script/GrapplePoint.xml +++ b/templates/mp2demo/Script/GrapplePoint.xml @@ -17,8 +17,8 @@ script/common/GrapplePoint.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/GuiMenu.xml b/templates/mp2demo/Script/GuiMenu.xml index 7f56e4ef..ebf3bc2b 100644 --- a/templates/mp2demo/Script/GuiMenu.xml +++ b/templates/mp2demo/Script/GuiMenu.xml @@ -31,7 +31,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/GuiScreen.xml b/templates/mp2demo/Script/GuiScreen.xml index 135bcac4..b64d9c57 100644 --- a/templates/mp2demo/Script/GuiScreen.xml +++ b/templates/mp2demo/Script/GuiScreen.xml @@ -18,7 +18,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/GuiSlider.xml b/templates/mp2demo/Script/GuiSlider.xml index 226e81b9..db9355ff 100644 --- a/templates/mp2demo/Script/GuiSlider.xml +++ b/templates/mp2demo/Script/GuiSlider.xml @@ -37,7 +37,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/GuiWidget.xml b/templates/mp2demo/Script/GuiWidget.xml index 36a98bab..f3d225bb 100644 --- a/templates/mp2demo/Script/GuiWidget.xml +++ b/templates/mp2demo/Script/GuiWidget.xml @@ -25,7 +25,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/HUDMemo.xml b/templates/mp2demo/Script/HUDMemo.xml index 3fc9b9bd..b92dcb3a 100644 --- a/templates/mp2demo/Script/HUDMemo.xml +++ b/templates/mp2demo/Script/HUDMemo.xml @@ -41,8 +41,8 @@ script/common/HUDMemo.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/IngSnatchingSwarm.xml b/templates/mp2demo/Script/IngSnatchingSwarm.xml index 37e2e5d9..293b3b69 100644 --- a/templates/mp2demo/Script/IngSnatchingSwarm.xml +++ b/templates/mp2demo/Script/IngSnatchingSwarm.xml @@ -87,7 +87,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/MemoryRelay.xml b/templates/mp2demo/Script/MemoryRelay.xml index 995ba1f7..dbea4d13 100644 --- a/templates/mp2demo/Script/MemoryRelay.xml +++ b/templates/mp2demo/Script/MemoryRelay.xml @@ -23,7 +23,7 @@ script/common/MemoryRelay.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/Midi.xml b/templates/mp2demo/Script/Midi.xml index a79b0ab5..4f9f79c8 100644 --- a/templates/mp2demo/Script/Midi.xml +++ b/templates/mp2demo/Script/Midi.xml @@ -25,7 +25,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/PathMeshCtrl.xml b/templates/mp2demo/Script/PathMeshCtrl.xml index 40696f82..f1137906 100644 --- a/templates/mp2demo/Script/PathMeshCtrl.xml +++ b/templates/mp2demo/Script/PathMeshCtrl.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/PickupGenerator.xml b/templates/mp2demo/Script/PickupGenerator.xml index c252e18a..ef92c071 100644 --- a/templates/mp2demo/Script/PickupGenerator.xml +++ b/templates/mp2demo/Script/PickupGenerator.xml @@ -26,7 +26,7 @@ script/common/PickupGenerator.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/Platform.xml b/templates/mp2demo/Script/Platform.xml index 850ccded..c2bd3efa 100644 --- a/templates/mp2demo/Script/Platform.xml +++ b/templates/mp2demo/Script/Platform.xml @@ -68,7 +68,7 @@ 0xC27FFA8F 0x7E397FED:0xC0BA9E18 0x7E397FED:0x6B1FBC3A - 0x0FC966DC + 0x0FC966DC enabled enabled diff --git a/templates/mp2demo/Script/PlayerHint.xml b/templates/mp2demo/Script/PlayerHint.xml index e2f00b0f..7698823b 100644 --- a/templates/mp2demo/Script/PlayerHint.xml +++ b/templates/mp2demo/Script/PlayerHint.xml @@ -24,7 +24,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/PlayerStateChange.xml b/templates/mp2demo/Script/PlayerStateChange.xml index 6736a36b..e8e2a98e 100644 --- a/templates/mp2demo/Script/PlayerStateChange.xml +++ b/templates/mp2demo/Script/PlayerStateChange.xml @@ -30,7 +30,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/PlayerTurret.xml b/templates/mp2demo/Script/PlayerTurret.xml index eec55e1f..9a636ae9 100644 --- a/templates/mp2demo/Script/PlayerTurret.xml +++ b/templates/mp2demo/Script/PlayerTurret.xml @@ -64,7 +64,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/PointOfInterest.xml b/templates/mp2demo/Script/PointOfInterest.xml index 23301a98..810d89ee 100644 --- a/templates/mp2demo/Script/PointOfInterest.xml +++ b/templates/mp2demo/Script/PointOfInterest.xml @@ -23,8 +23,8 @@ script/common/PointOfInterest.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/RadialDamage.xml b/templates/mp2demo/Script/RadialDamage.xml index 10bfcf83..f1896cec 100644 --- a/templates/mp2demo/Script/RadialDamage.xml +++ b/templates/mp2demo/Script/RadialDamage.xml @@ -19,7 +19,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/RandomRelay.xml b/templates/mp2demo/Script/RandomRelay.xml index 5a7beae1..35e0fbc3 100644 --- a/templates/mp2demo/Script/RandomRelay.xml +++ b/templates/mp2demo/Script/RandomRelay.xml @@ -29,7 +29,7 @@ script/common/RandomRelay.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/Relay.xml b/templates/mp2demo/Script/Relay.xml index 8608cf9a..6c2f582f 100644 --- a/templates/mp2demo/Script/Relay.xml +++ b/templates/mp2demo/Script/Relay.xml @@ -20,7 +20,7 @@ script/common/Relay.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/Repulsor.xml b/templates/mp2demo/Script/Repulsor.xml index 22ab262f..199255b4 100644 --- a/templates/mp2demo/Script/Repulsor.xml +++ b/templates/mp2demo/Script/Repulsor.xml @@ -24,7 +24,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/Ripple.xml b/templates/mp2demo/Script/Ripple.xml index 7faf5148..d25bdad2 100644 --- a/templates/mp2demo/Script/Ripple.xml +++ b/templates/mp2demo/Script/Ripple.xml @@ -18,7 +18,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/RoomAcoustics.xml b/templates/mp2demo/Script/RoomAcoustics.xml index d1469482..55eb211d 100644 --- a/templates/mp2demo/Script/RoomAcoustics.xml +++ b/templates/mp2demo/Script/RoomAcoustics.xml @@ -132,7 +132,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/RsfAudio.xml b/templates/mp2demo/Script/RsfAudio.xml index bf875b3a..7abfd0d7 100644 --- a/templates/mp2demo/Script/RsfAudio.xml +++ b/templates/mp2demo/Script/RsfAudio.xml @@ -31,7 +31,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/RumbleEffect.xml b/templates/mp2demo/Script/RumbleEffect.xml index 58ed8777..ec927e2f 100644 --- a/templates/mp2demo/Script/RumbleEffect.xml +++ b/templates/mp2demo/Script/RumbleEffect.xml @@ -24,7 +24,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/SequenceTimer.xml b/templates/mp2demo/Script/SequenceTimer.xml index d7da1cfd..9b6eda02 100644 --- a/templates/mp2demo/Script/SequenceTimer.xml +++ b/templates/mp2demo/Script/SequenceTimer.xml @@ -4,15 +4,18 @@ - 0 - Connection + Connection - - - - - - + + 0 + + + + + 0.0 + + + @@ -38,7 +41,7 @@ script/common/SequenceTimer.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/ShadowProjector.xml b/templates/mp2demo/Script/ShadowProjector.xml index 39af7037..cb61e07b 100644 --- a/templates/mp2demo/Script/ShadowProjector.xml +++ b/templates/mp2demo/Script/ShadowProjector.xml @@ -36,7 +36,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/Silhouette.xml b/templates/mp2demo/Script/Silhouette.xml index c710837a..b80675b6 100644 --- a/templates/mp2demo/Script/Silhouette.xml +++ b/templates/mp2demo/Script/Silhouette.xml @@ -40,7 +40,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/Sound.xml b/templates/mp2demo/Script/Sound.xml index e79c5e1e..0d44cff3 100644 --- a/templates/mp2demo/Script/Sound.xml +++ b/templates/mp2demo/Script/Sound.xml @@ -76,9 +76,9 @@ - script/common/Sound.txtr - - 0.5 + script/common/Sound.txtr + + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/SpawnPoint.xml b/templates/mp2demo/Script/SpawnPoint.xml index 820e8b21..5ccd434b 100644 --- a/templates/mp2demo/Script/SpawnPoint.xml +++ b/templates/mp2demo/Script/SpawnPoint.xml @@ -23,7 +23,7 @@ - 0.5559 + 0.5559 enabled enabled diff --git a/templates/mp2demo/Script/SpecialFunction.xml b/templates/mp2demo/Script/SpecialFunction.xml index 4ac40996..9c14e82e 100644 --- a/templates/mp2demo/Script/SpecialFunction.xml +++ b/templates/mp2demo/Script/SpecialFunction.xml @@ -55,10 +55,10 @@ - + script/common/SpecialFunction.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/SpiderBallAttractionSurface.xml b/templates/mp2demo/Script/SpiderBallAttractionSurface.xml index 9b00d0a5..140da75a 100644 --- a/templates/mp2demo/Script/SpiderBallAttractionSurface.xml +++ b/templates/mp2demo/Script/SpiderBallAttractionSurface.xml @@ -16,7 +16,7 @@ script/common/SpiderBallAttractionSurface.txtr - + enabled volume diff --git a/templates/mp2demo/Script/StreamedAudio.xml b/templates/mp2demo/Script/StreamedAudio.xml index 8ef1ccc8..f6fb1415 100644 --- a/templates/mp2demo/Script/StreamedAudio.xml +++ b/templates/mp2demo/Script/StreamedAudio.xml @@ -34,9 +34,9 @@ - script/common/StreamedAudio.txtr - - 0.5 + script/common/StreamedAudio.txtr + + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/Subtitle.xml b/templates/mp2demo/Script/Subtitle.xml index 4085aa55..f927de44 100644 --- a/templates/mp2demo/Script/Subtitle.xml +++ b/templates/mp2demo/Script/Subtitle.xml @@ -32,7 +32,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/TargetingPoint.xml b/templates/mp2demo/Script/TargetingPoint.xml index 2fcd7335..d2b3e6f4 100644 --- a/templates/mp2demo/Script/TargetingPoint.xml +++ b/templates/mp2demo/Script/TargetingPoint.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/TeamAI.xml b/templates/mp2demo/Script/TeamAI.xml index 24d703c4..f2f8e5d7 100644 --- a/templates/mp2demo/Script/TeamAI.xml +++ b/templates/mp2demo/Script/TeamAI.xml @@ -42,7 +42,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/TextPane.xml b/templates/mp2demo/Script/TextPane.xml index 4229adba..20c5ad7a 100644 --- a/templates/mp2demo/Script/TextPane.xml +++ b/templates/mp2demo/Script/TextPane.xml @@ -39,7 +39,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/TimeKeyframe.xml b/templates/mp2demo/Script/TimeKeyframe.xml index 39a2c7bd..43121e91 100644 --- a/templates/mp2demo/Script/TimeKeyframe.xml +++ b/templates/mp2demo/Script/TimeKeyframe.xml @@ -18,7 +18,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/Timer.xml b/templates/mp2demo/Script/Timer.xml index a3659ad4..dc0347e9 100644 --- a/templates/mp2demo/Script/Timer.xml +++ b/templates/mp2demo/Script/Timer.xml @@ -28,8 +28,8 @@ script/common/Timer.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/VisorFlare.xml b/templates/mp2demo/Script/VisorFlare.xml index 5d73d29e..85b388a3 100644 --- a/templates/mp2demo/Script/VisorFlare.xml +++ b/templates/mp2demo/Script/VisorFlare.xml @@ -68,9 +68,9 @@ - script/common/VisorFlare.txtr - - 0.5 + script/common/VisorFlare.txtr + + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/VisorGoo.xml b/templates/mp2demo/Script/VisorGoo.xml index 3b0bd5c6..4ef36685 100644 --- a/templates/mp2demo/Script/VisorGoo.xml +++ b/templates/mp2demo/Script/VisorGoo.xml @@ -43,9 +43,9 @@ - script/common/VisorGoo.txtr - - 0.5 + script/common/VisorGoo.txtr + + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/WorldLightFader.xml b/templates/mp2demo/Script/WorldLightFader.xml index 71495206..fb13041e 100644 --- a/templates/mp2demo/Script/WorldLightFader.xml +++ b/templates/mp2demo/Script/WorldLightFader.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Script/WorldTeleporter.xml b/templates/mp2demo/Script/WorldTeleporter.xml index 707059cb..712d9ca5 100644 --- a/templates/mp2demo/Script/WorldTeleporter.xml +++ b/templates/mp2demo/Script/WorldTeleporter.xml @@ -78,7 +78,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp2demo/Structs/LayerSwitch.xml b/templates/mp2demo/Structs/LayerSwitch.xml index cfb457a9..eb9604f2 100644 --- a/templates/mp2demo/Structs/LayerSwitch.xml +++ b/templates/mp2demo/Structs/LayerSwitch.xml @@ -1,7 +1,9 @@ - - - - + + + + 0 + + diff --git a/templates/mp2demo/Structs/LightParameters.xml b/templates/mp2demo/Structs/LightParameters.xml index 7543cbc2..3a5c6e42 100644 --- a/templates/mp2demo/Structs/LightParameters.xml +++ b/templates/mp2demo/Structs/LightParameters.xml @@ -23,13 +23,13 @@ true - 1 - - - - - - + 0x01 + + + + + + 1 diff --git a/templates/mp2demo/Structs/MayaSpline.xml b/templates/mp2demo/Structs/MayaSpline.xml index 59869570..d8759fcf 100644 --- a/templates/mp2demo/Structs/MayaSpline.xml +++ b/templates/mp2demo/Structs/MayaSpline.xml @@ -1,4 +1,4 @@ - + diff --git a/templates/mp2demo/Structs/Transform.xml b/templates/mp2demo/Structs/Transform.xml index 1fab3e98..5fe91767 100644 --- a/templates/mp2demo/Structs/Transform.xml +++ b/templates/mp2demo/Structs/Transform.xml @@ -1,14 +1,14 @@ - - - 0,0,0 - - - 0,0,0 - - - 1,1,1 - - + + + 0.0, 0.0, 0.0 + + + 0.0, 0.0, 0.0 + + + 1.0, 1.0, 1.0 + + diff --git a/templates/mp2demo/Structs/WeaponVulnerability.xml b/templates/mp2demo/Structs/WeaponVulnerability.xml index ec3f5861..544b4c16 100644 --- a/templates/mp2demo/Structs/WeaponVulnerability.xml +++ b/templates/mp2demo/Structs/WeaponVulnerability.xml @@ -3,7 +3,7 @@ 100.0 - % + % 0 diff --git a/templates/mp3/Enums/BerserkerEnum.xml b/templates/mp3/Enums/BerserkerEnum.xml index b05d7d83..4d9941f2 100644 --- a/templates/mp3/Enums/BerserkerEnum.xml +++ b/templates/mp3/Enums/BerserkerEnum.xml @@ -1,9 +1,9 @@ - - - - - - + + + + + + diff --git a/templates/mp3/Enums/CableEnum.xml b/templates/mp3/Enums/CableEnum.xml index cc635201..a8be0790 100644 --- a/templates/mp3/Enums/CableEnum.xml +++ b/templates/mp3/Enums/CableEnum.xml @@ -1,8 +1,8 @@ - - - - - + + + + + diff --git a/templates/mp3/Enums/DamageableTriggerEnum.xml b/templates/mp3/Enums/DamageableTriggerEnum.xml index e5ef86be..d15aa38d 100644 --- a/templates/mp3/Enums/DamageableTriggerEnum.xml +++ b/templates/mp3/Enums/DamageableTriggerEnum.xml @@ -1,9 +1,9 @@ - - - - - - + + + + + + diff --git a/templates/mp3/Enums/DamageableTriggerStruct.xml b/templates/mp3/Enums/DamageableTriggerStruct.xml deleted file mode 100644 index c3630098..00000000 --- a/templates/mp3/Enums/DamageableTriggerStruct.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/templates/mp3/Enums/Item.xml b/templates/mp3/Enums/Item.xml index 9f30fdc5..f4a7aa6d 100644 --- a/templates/mp3/Enums/Item.xml +++ b/templates/mp3/Enums/Item.xml @@ -1,64 +1,64 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/templates/mp3/Enums/UnknownEnum1.xml b/templates/mp3/Enums/UnknownEnum1.xml index da6d6f9e..4fe31617 100644 --- a/templates/mp3/Enums/UnknownEnum1.xml +++ b/templates/mp3/Enums/UnknownEnum1.xml @@ -1,8 +1,8 @@ - - - - - + + + + + diff --git a/templates/mp3/MasterTemplate.xml b/templates/mp3/MasterTemplate.xml index 212a2089..f539b64f 100644 --- a/templates/mp3/MasterTemplate.xml +++ b/templates/mp3/MasterTemplate.xml @@ -1,212 +1,212 @@ + + + + - - - - - - - - - - + - + + + + + + + - - - - - + + + + + + + + + - - - - - - - - - - - - - + + + + - + + + + - - + + + - + - - + + - - + + + + + - - - - + + + + + + - - - + - + - - + - + + + + + - + + + + + - - - - - - - - - - + - - + + - + - + + + + - - - + + + + - - - - - - - - - - + + + + + + + + - - - + + + - + - - - + + - - + + + + + - - - - - + + + - - - + + - - + - - + - + diff --git a/templates/mp3/Script/AIFuse.xml b/templates/mp3/Script/AIFuse.xml index a2d2056f..ca095fb0 100644 --- a/templates/mp3/Script/AIFuse.xml +++ b/templates/mp3/Script/AIFuse.xml @@ -48,7 +48,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/AIKeyframe.xml b/templates/mp3/Script/AIKeyframe.xml index 6140f822..ca1a56df 100644 --- a/templates/mp3/Script/AIKeyframe.xml +++ b/templates/mp3/Script/AIKeyframe.xml @@ -33,7 +33,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/AITaskPoint.xml b/templates/mp3/Script/AITaskPoint.xml index 04144b5c..c2a0b28e 100644 --- a/templates/mp3/Script/AITaskPoint.xml +++ b/templates/mp3/Script/AITaskPoint.xml @@ -87,7 +87,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/AVIS.xml b/templates/mp3/Script/AVIS.xml index 0f587685..9b5c054f 100644 --- a/templates/mp3/Script/AVIS.xml +++ b/templates/mp3/Script/AVIS.xml @@ -17,7 +17,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/AVMC.xml b/templates/mp3/Script/AVMC.xml index a96869c2..88fe0d98 100644 --- a/templates/mp3/Script/AVMC.xml +++ b/templates/mp3/Script/AVMC.xml @@ -19,7 +19,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/Achievement.xml b/templates/mp3/Script/Achievement.xml index bd494807..c60b052e 100644 --- a/templates/mp3/Script/Achievement.xml +++ b/templates/mp3/Script/Achievement.xml @@ -128,7 +128,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/Actor.xml b/templates/mp3/Script/Actor.xml index 44f13fec..1eae9edb 100644 --- a/templates/mp3/Script/Actor.xml +++ b/templates/mp3/Script/Actor.xml @@ -89,7 +89,7 @@ 0xA244C9D8 0xC27FFA8F 0x7E397FED:0xBB52F0BE - 0x0FC966DC + 0x0FC966DC enabled enabled diff --git a/templates/mp3/Script/ActorKeyframe.xml b/templates/mp3/Script/ActorKeyframe.xml index a7a42166..06fe5ac1 100644 --- a/templates/mp3/Script/ActorKeyframe.xml +++ b/templates/mp3/Script/ActorKeyframe.xml @@ -33,7 +33,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ActorMorph.xml b/templates/mp3/Script/ActorMorph.xml index 7a9c29d6..5de600d2 100644 --- a/templates/mp3/Script/ActorMorph.xml +++ b/templates/mp3/Script/ActorMorph.xml @@ -34,7 +34,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ActorTransform.xml b/templates/mp3/Script/ActorTransform.xml index 97c51800..9a1a72a2 100644 --- a/templates/mp3/Script/ActorTransform.xml +++ b/templates/mp3/Script/ActorTransform.xml @@ -43,7 +43,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/AlarmController.xml b/templates/mp3/Script/AlarmController.xml index 9d1a955b..cc6f5e6b 100644 --- a/templates/mp3/Script/AlarmController.xml +++ b/templates/mp3/Script/AlarmController.xml @@ -18,7 +18,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/AreaAttributes.xml b/templates/mp3/Script/AreaAttributes.xml index 1d088cf2..91353956 100644 --- a/templates/mp3/Script/AreaAttributes.xml +++ b/templates/mp3/Script/AreaAttributes.xml @@ -96,9 +96,9 @@ - script/common/AreaAttributes.txtr - - 0.5 + script/common/AreaAttributes.txtr + + 0.5 enabled enabled diff --git a/templates/mp3/Script/AreaDamage.xml b/templates/mp3/Script/AreaDamage.xml index dfd7cf51..751aefc0 100644 --- a/templates/mp3/Script/AreaDamage.xml +++ b/templates/mp3/Script/AreaDamage.xml @@ -22,7 +22,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/AssignedAudioStream.xml b/templates/mp3/Script/AssignedAudioStream.xml index e5be1940..3e5a8e61 100644 --- a/templates/mp3/Script/AssignedAudioStream.xml +++ b/templates/mp3/Script/AssignedAudioStream.xml @@ -36,7 +36,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/Beam.xml b/templates/mp3/Script/Beam.xml index 4f4cdff9..0fad822d 100644 --- a/templates/mp3/Script/Beam.xml +++ b/templates/mp3/Script/Beam.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/CameraBlurKeyframe.xml b/templates/mp3/Script/CameraBlurKeyframe.xml index d21f378e..16df405b 100644 --- a/templates/mp3/Script/CameraBlurKeyframe.xml +++ b/templates/mp3/Script/CameraBlurKeyframe.xml @@ -30,7 +30,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/CameraFilterKeyframe.xml b/templates/mp3/Script/CameraFilterKeyframe.xml index ff5d3f16..96b5bcf7 100644 --- a/templates/mp3/Script/CameraFilterKeyframe.xml +++ b/templates/mp3/Script/CameraFilterKeyframe.xml @@ -38,7 +38,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/CameraHint.xml b/templates/mp3/Script/CameraHint.xml index 76df2764..aa303969 100644 --- a/templates/mp3/Script/CameraHint.xml +++ b/templates/mp3/Script/CameraHint.xml @@ -287,7 +287,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/CameraPitch.xml b/templates/mp3/Script/CameraPitch.xml index 507aae68..a2a1f808 100644 --- a/templates/mp3/Script/CameraPitch.xml +++ b/templates/mp3/Script/CameraPitch.xml @@ -25,7 +25,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/CameraShaker.xml b/templates/mp3/Script/CameraShaker.xml index ed7f703a..470c2f35 100644 --- a/templates/mp3/Script/CameraShaker.xml +++ b/templates/mp3/Script/CameraShaker.xml @@ -32,7 +32,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/CannonBall.xml b/templates/mp3/Script/CannonBall.xml index 23fe75f9..03c6b26b 100644 --- a/templates/mp3/Script/CannonBall.xml +++ b/templates/mp3/Script/CannonBall.xml @@ -16,7 +16,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ColorModulate.xml b/templates/mp3/Script/ColorModulate.xml index 6c58d910..46296b11 100644 --- a/templates/mp3/Script/ColorModulate.xml +++ b/templates/mp3/Script/ColorModulate.xml @@ -79,7 +79,7 @@ script/common/ColorModulate.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ConditionalRelay.xml b/templates/mp3/Script/ConditionalRelay.xml index dc882f49..0b4ba4f5 100644 --- a/templates/mp3/Script/ConditionalRelay.xml +++ b/templates/mp3/Script/ConditionalRelay.xml @@ -45,7 +45,7 @@ script/common/ConditionalRelay.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ContextActionButtonPressing.xml b/templates/mp3/Script/ContextActionButtonPressing.xml index 683abab4..2f7883a9 100644 --- a/templates/mp3/Script/ContextActionButtonPressing.xml +++ b/templates/mp3/Script/ContextActionButtonPressing.xml @@ -37,7 +37,7 @@ 0x4044D9E5 - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ContextActionCombinationLock.xml b/templates/mp3/Script/ContextActionCombinationLock.xml index bd2aa939..5c61a1e7 100644 --- a/templates/mp3/Script/ContextActionCombinationLock.xml +++ b/templates/mp3/Script/ContextActionCombinationLock.xml @@ -37,7 +37,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ContextActionImageFocus.xml b/templates/mp3/Script/ContextActionImageFocus.xml index cff6143b..a2a4621c 100644 --- a/templates/mp3/Script/ContextActionImageFocus.xml +++ b/templates/mp3/Script/ContextActionImageFocus.xml @@ -49,7 +49,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ContextSensitiveAction.xml b/templates/mp3/Script/ContextSensitiveAction.xml index 033c43bf..831dc193 100644 --- a/templates/mp3/Script/ContextSensitiveAction.xml +++ b/templates/mp3/Script/ContextSensitiveAction.xml @@ -48,7 +48,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ContextSensitiveActivator.xml b/templates/mp3/Script/ContextSensitiveActivator.xml index ab804c1e..2403e7a4 100644 --- a/templates/mp3/Script/ContextSensitiveActivator.xml +++ b/templates/mp3/Script/ContextSensitiveActivator.xml @@ -37,7 +37,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ControlHint.xml b/templates/mp3/Script/ControlHint.xml index 2136e58f..abaab025 100644 --- a/templates/mp3/Script/ControlHint.xml +++ b/templates/mp3/Script/ControlHint.xml @@ -47,7 +47,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ControllerAction.xml b/templates/mp3/Script/ControllerAction.xml index 21a846e0..d4690314 100644 --- a/templates/mp3/Script/ControllerAction.xml +++ b/templates/mp3/Script/ControllerAction.xml @@ -28,7 +28,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/Counter.xml b/templates/mp3/Script/Counter.xml index ccf78405..c82d3d6c 100644 --- a/templates/mp3/Script/Counter.xml +++ b/templates/mp3/Script/Counter.xml @@ -60,10 +60,10 @@ - + script/common/Counter.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp3/Script/CoverPoint.xml b/templates/mp3/Script/CoverPoint.xml index 36565dad..293e1e86 100644 --- a/templates/mp3/Script/CoverPoint.xml +++ b/templates/mp3/Script/CoverPoint.xml @@ -42,7 +42,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/CrossAreaRelay.xml b/templates/mp3/Script/CrossAreaRelay.xml index e4a476c8..3ada6089 100644 --- a/templates/mp3/Script/CrossAreaRelay.xml +++ b/templates/mp3/Script/CrossAreaRelay.xml @@ -16,7 +16,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/DamageActor.xml b/templates/mp3/Script/DamageActor.xml index 123df8ab..55a4adb9 100644 --- a/templates/mp3/Script/DamageActor.xml +++ b/templates/mp3/Script/DamageActor.xml @@ -16,7 +16,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/DamageableTrigger.xml b/templates/mp3/Script/DamageableTrigger.xml index c35c74ab..7791c7cc 100644 --- a/templates/mp3/Script/DamageableTrigger.xml +++ b/templates/mp3/Script/DamageableTrigger.xml @@ -39,8 +39,8 @@ - script/common/DamageableTrigger.txtr - + script/common/DamageableTrigger.txtr + enabled volume diff --git a/templates/mp3/Script/DistanceFog.xml b/templates/mp3/Script/DistanceFog.xml index 1586fcc0..d20cea41 100644 --- a/templates/mp3/Script/DistanceFog.xml +++ b/templates/mp3/Script/DistanceFog.xml @@ -53,9 +53,9 @@ - script/common/DistanceFog.txtr - - 0.5 + script/common/DistanceFog.txtr + + 0.5 enabled enabled diff --git a/templates/mp3/Script/Dock.xml b/templates/mp3/Script/Dock.xml index 114289d2..566c65cc 100644 --- a/templates/mp3/Script/Dock.xml +++ b/templates/mp3/Script/Dock.xml @@ -31,7 +31,7 @@ script/common/Dock.txtr - + enabled volume diff --git a/templates/mp3/Script/DynamicLight.xml b/templates/mp3/Script/DynamicLight.xml index a952cb93..d8b65b4f 100644 --- a/templates/mp3/Script/DynamicLight.xml +++ b/templates/mp3/Script/DynamicLight.xml @@ -98,7 +98,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/Effect.xml b/templates/mp3/Script/Effect.xml index a23dceb3..cbfe2693 100644 --- a/templates/mp3/Script/Effect.xml +++ b/templates/mp3/Script/Effect.xml @@ -92,7 +92,7 @@ script/common/Effect.txtr - + enabled enabled diff --git a/templates/mp3/Script/EffectRepulsor.xml b/templates/mp3/Script/EffectRepulsor.xml index e4898fb1..358f14bf 100644 --- a/templates/mp3/Script/EffectRepulsor.xml +++ b/templates/mp3/Script/EffectRepulsor.xml @@ -32,7 +32,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ElectroMagneticPulse.xml b/templates/mp3/Script/ElectroMagneticPulse.xml index d36c9bb0..2464140d 100644 --- a/templates/mp3/Script/ElectroMagneticPulse.xml +++ b/templates/mp3/Script/ElectroMagneticPulse.xml @@ -43,7 +43,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/EnvFxDensityController.xml b/templates/mp3/Script/EnvFxDensityController.xml index 05537af9..9bc9d147 100644 --- a/templates/mp3/Script/EnvFxDensityController.xml +++ b/templates/mp3/Script/EnvFxDensityController.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/FalsePerspective.xml b/templates/mp3/Script/FalsePerspective.xml index 26971dc8..ad8ebbf3 100644 --- a/templates/mp3/Script/FalsePerspective.xml +++ b/templates/mp3/Script/FalsePerspective.xml @@ -24,7 +24,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/FishCloudModifier.xml b/templates/mp3/Script/FishCloudModifier.xml index 447ab49e..ba804819 100644 --- a/templates/mp3/Script/FishCloudModifier.xml +++ b/templates/mp3/Script/FishCloudModifier.xml @@ -27,7 +27,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/FogOverlay.xml b/templates/mp3/Script/FogOverlay.xml index 8d124cec..b212c63c 100644 --- a/templates/mp3/Script/FogOverlay.xml +++ b/templates/mp3/Script/FogOverlay.xml @@ -60,7 +60,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/GeneratedObjectDeleter.xml b/templates/mp3/Script/GeneratedObjectDeleter.xml index 648ddb09..b5b048a6 100644 --- a/templates/mp3/Script/GeneratedObjectDeleter.xml +++ b/templates/mp3/Script/GeneratedObjectDeleter.xml @@ -28,7 +28,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/Generator.xml b/templates/mp3/Script/Generator.xml index 81881ee9..c54389d3 100644 --- a/templates/mp3/Script/Generator.xml +++ b/templates/mp3/Script/Generator.xml @@ -47,7 +47,7 @@ script/common/Generator.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/GrapplePoint.xml b/templates/mp3/Script/GrapplePoint.xml index 6e1a160e..48fe73e9 100644 --- a/templates/mp3/Script/GrapplePoint.xml +++ b/templates/mp3/Script/GrapplePoint.xml @@ -72,8 +72,8 @@ script/common/GrapplePoint.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp3/Script/GuiMenu.xml b/templates/mp3/Script/GuiMenu.xml index 976317da..ab2a8c2d 100644 --- a/templates/mp3/Script/GuiMenu.xml +++ b/templates/mp3/Script/GuiMenu.xml @@ -31,7 +31,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/GuiScreen.xml b/templates/mp3/Script/GuiScreen.xml index 73a48c2f..0e93630a 100644 --- a/templates/mp3/Script/GuiScreen.xml +++ b/templates/mp3/Script/GuiScreen.xml @@ -19,7 +19,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/GuiSlider.xml b/templates/mp3/Script/GuiSlider.xml index 7981581d..f829a5ce 100644 --- a/templates/mp3/Script/GuiSlider.xml +++ b/templates/mp3/Script/GuiSlider.xml @@ -38,7 +38,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/GuiWidget.xml b/templates/mp3/Script/GuiWidget.xml index 76989b0c..723d6a7f 100644 --- a/templates/mp3/Script/GuiWidget.xml +++ b/templates/mp3/Script/GuiWidget.xml @@ -22,7 +22,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/HUDHint.xml b/templates/mp3/Script/HUDHint.xml index 5c396e2a..01bc877d 100644 --- a/templates/mp3/Script/HUDHint.xml +++ b/templates/mp3/Script/HUDHint.xml @@ -34,7 +34,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/HUDMemo.xml b/templates/mp3/Script/HUDMemo.xml index 81f209dd..63c049d9 100644 --- a/templates/mp3/Script/HUDMemo.xml +++ b/templates/mp3/Script/HUDMemo.xml @@ -70,8 +70,8 @@ script/common/HUDMemo.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp3/Script/IFT.xml b/templates/mp3/Script/IFT.xml index f4cf2f48..e868f1bb 100644 --- a/templates/mp3/Script/IFT.xml +++ b/templates/mp3/Script/IFT.xml @@ -18,7 +18,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/LODController.xml b/templates/mp3/Script/LODController.xml index 260adfa6..870fd85e 100644 --- a/templates/mp3/Script/LODController.xml +++ b/templates/mp3/Script/LODController.xml @@ -61,7 +61,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/LUAScript.xml b/templates/mp3/Script/LUAScript.xml index f9d2e4fd..752ac208 100644 --- a/templates/mp3/Script/LUAScript.xml +++ b/templates/mp3/Script/LUAScript.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/MemoryRelay.xml b/templates/mp3/Script/MemoryRelay.xml index 15918808..8df61d62 100644 --- a/templates/mp3/Script/MemoryRelay.xml +++ b/templates/mp3/Script/MemoryRelay.xml @@ -24,7 +24,7 @@ script/common/MemoryRelay.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/OptionalAreaAsset.xml b/templates/mp3/Script/OptionalAreaAsset.xml index e287a58b..0a9944b6 100644 --- a/templates/mp3/Script/OptionalAreaAsset.xml +++ b/templates/mp3/Script/OptionalAreaAsset.xml @@ -23,7 +23,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/PathControl.xml b/templates/mp3/Script/PathControl.xml index ed6e8253..836b200d 100644 --- a/templates/mp3/Script/PathControl.xml +++ b/templates/mp3/Script/PathControl.xml @@ -27,7 +27,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/PathMeshCtrl.xml b/templates/mp3/Script/PathMeshCtrl.xml index 40696f82..f1137906 100644 --- a/templates/mp3/Script/PathMeshCtrl.xml +++ b/templates/mp3/Script/PathMeshCtrl.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/Platform.xml b/templates/mp3/Script/Platform.xml index 940de927..d116004e 100644 --- a/templates/mp3/Script/Platform.xml +++ b/templates/mp3/Script/Platform.xml @@ -65,7 +65,7 @@ 0xA3D63F44 0xC27FFA8F 0x7E397FED:0xBB52F0BE - 0x0FC966DC + 0x0FC966DC enabled enabled diff --git a/templates/mp3/Script/PlayerGravityScalar.xml b/templates/mp3/Script/PlayerGravityScalar.xml index 93bad313..2f77db4f 100644 --- a/templates/mp3/Script/PlayerGravityScalar.xml +++ b/templates/mp3/Script/PlayerGravityScalar.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/PlayerHint.xml b/templates/mp3/Script/PlayerHint.xml index f4dd1619..4cf1142a 100644 --- a/templates/mp3/Script/PlayerHint.xml +++ b/templates/mp3/Script/PlayerHint.xml @@ -31,7 +31,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/PlayerProxy.xml b/templates/mp3/Script/PlayerProxy.xml index e63ab58c..d752751c 100644 --- a/templates/mp3/Script/PlayerProxy.xml +++ b/templates/mp3/Script/PlayerProxy.xml @@ -38,7 +38,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/PointOfInterest.xml b/templates/mp3/Script/PointOfInterest.xml index 16fa6687..361c346a 100644 --- a/templates/mp3/Script/PointOfInterest.xml +++ b/templates/mp3/Script/PointOfInterest.xml @@ -26,8 +26,8 @@ script/common/PointOfInterest.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp3/Script/PositionRelay.xml b/templates/mp3/Script/PositionRelay.xml index a7bcda48..642bcbe0 100644 --- a/templates/mp3/Script/PositionRelay.xml +++ b/templates/mp3/Script/PositionRelay.xml @@ -18,7 +18,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/RSPL.xml b/templates/mp3/Script/RSPL.xml index 7d8af4fc..6ac9177e 100644 --- a/templates/mp3/Script/RSPL.xml +++ b/templates/mp3/Script/RSPL.xml @@ -30,7 +30,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/RadialDamage.xml b/templates/mp3/Script/RadialDamage.xml index c1f530b2..c888f387 100644 --- a/templates/mp3/Script/RadialDamage.xml +++ b/templates/mp3/Script/RadialDamage.xml @@ -28,7 +28,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/RandomRelay.xml b/templates/mp3/Script/RandomRelay.xml index 7fef4370..84a57b7b 100644 --- a/templates/mp3/Script/RandomRelay.xml +++ b/templates/mp3/Script/RandomRelay.xml @@ -32,7 +32,7 @@ script/common/RandomRelay.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/Relay.xml b/templates/mp3/Script/Relay.xml index 8608cf9a..6c2f582f 100644 --- a/templates/mp3/Script/Relay.xml +++ b/templates/mp3/Script/Relay.xml @@ -20,7 +20,7 @@ script/common/Relay.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/Repulsor.xml b/templates/mp3/Script/Repulsor.xml index b3e643bc..3f3e3e14 100644 --- a/templates/mp3/Script/Repulsor.xml +++ b/templates/mp3/Script/Repulsor.xml @@ -27,7 +27,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/Ripple.xml b/templates/mp3/Script/Ripple.xml index 56a809fb..5025ec9a 100644 --- a/templates/mp3/Script/Ripple.xml +++ b/templates/mp3/Script/Ripple.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/RoomAcoustics.xml b/templates/mp3/Script/RoomAcoustics.xml index f51a632a..89a82853 100644 --- a/templates/mp3/Script/RoomAcoustics.xml +++ b/templates/mp3/Script/RoomAcoustics.xml @@ -47,7 +47,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/RumbleEffect.xml b/templates/mp3/Script/RumbleEffect.xml index 252e66d1..553433cc 100644 --- a/templates/mp3/Script/RumbleEffect.xml +++ b/templates/mp3/Script/RumbleEffect.xml @@ -25,7 +25,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ScanBeam.xml b/templates/mp3/Script/ScanBeam.xml index b6c54b5a..62864cd9 100644 --- a/templates/mp3/Script/ScanBeam.xml +++ b/templates/mp3/Script/ScanBeam.xml @@ -16,7 +16,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ScanIncoming.xml b/templates/mp3/Script/ScanIncoming.xml index d104e7e6..dd616a15 100644 --- a/templates/mp3/Script/ScanIncoming.xml +++ b/templates/mp3/Script/ScanIncoming.xml @@ -16,7 +16,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ScrewAttackWallJumpTarget.xml b/templates/mp3/Script/ScrewAttackWallJumpTarget.xml index da39acc6..c54e011c 100644 --- a/templates/mp3/Script/ScrewAttackWallJumpTarget.xml +++ b/templates/mp3/Script/ScrewAttackWallJumpTarget.xml @@ -15,7 +15,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ScriptLayerController.xml b/templates/mp3/Script/ScriptLayerController.xml index 1a7f0a95..b76b2953 100644 --- a/templates/mp3/Script/ScriptLayerController.xml +++ b/templates/mp3/Script/ScriptLayerController.xml @@ -19,7 +19,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/SequenceTimer.xml b/templates/mp3/Script/SequenceTimer.xml index c6886e0c..6d57a569 100644 --- a/templates/mp3/Script/SequenceTimer.xml +++ b/templates/mp3/Script/SequenceTimer.xml @@ -4,23 +4,30 @@ - 0 - Connection + Connection - - - Activation Time - - - - Always 0 - - - - Always 0 - - - + + 0 + + + Activation Time + + + 0.0 + + + 0 + Always 0 + + + 0 + + + 0 + Always 0 + + + @@ -55,7 +62,7 @@ script/common/SequenceTimer.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ShadowProjector.xml b/templates/mp3/Script/ShadowProjector.xml index f5258049..50b0e40b 100644 --- a/templates/mp3/Script/ShadowProjector.xml +++ b/templates/mp3/Script/ShadowProjector.xml @@ -37,7 +37,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ShipBombingRun.xml b/templates/mp3/Script/ShipBombingRun.xml index f68e1571..1dc126d4 100644 --- a/templates/mp3/Script/ShipBombingRun.xml +++ b/templates/mp3/Script/ShipBombingRun.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ShipCommandIcon.xml b/templates/mp3/Script/ShipCommandIcon.xml index d19ba9de..5ac6584e 100644 --- a/templates/mp3/Script/ShipCommandIcon.xml +++ b/templates/mp3/Script/ShipCommandIcon.xml @@ -51,7 +51,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ShipCommandPath.xml b/templates/mp3/Script/ShipCommandPath.xml index 25fe4d42..ebf3802f 100644 --- a/templates/mp3/Script/ShipCommandPath.xml +++ b/templates/mp3/Script/ShipCommandPath.xml @@ -31,7 +31,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/ShipDecalController.xml b/templates/mp3/Script/ShipDecalController.xml index a3b48a0d..3cf83698 100644 --- a/templates/mp3/Script/ShipDecalController.xml +++ b/templates/mp3/Script/ShipDecalController.xml @@ -28,7 +28,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/SkyRipple.xml b/templates/mp3/Script/SkyRipple.xml index d468d1b4..0ab2f395 100644 --- a/templates/mp3/Script/SkyRipple.xml +++ b/templates/mp3/Script/SkyRipple.xml @@ -15,7 +15,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/SkyboxModInca.xml b/templates/mp3/Script/SkyboxModInca.xml index 05df6efc..3f9f94b8 100644 --- a/templates/mp3/Script/SkyboxModInca.xml +++ b/templates/mp3/Script/SkyboxModInca.xml @@ -19,7 +19,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/SnagVineHelper.xml b/templates/mp3/Script/SnagVineHelper.xml index e9496478..a42fab7e 100644 --- a/templates/mp3/Script/SnagVineHelper.xml +++ b/templates/mp3/Script/SnagVineHelper.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/Sound.xml b/templates/mp3/Script/Sound.xml index 8d9d414e..57df3a14 100644 --- a/templates/mp3/Script/Sound.xml +++ b/templates/mp3/Script/Sound.xml @@ -74,9 +74,9 @@ - script/common/Sound.txtr - - 0.5 + script/common/Sound.txtr + + 0.5 enabled enabled diff --git a/templates/mp3/Script/SoundModifier.xml b/templates/mp3/Script/SoundModifier.xml index c711b5fd..efcf6b35 100644 --- a/templates/mp3/Script/SoundModifier.xml +++ b/templates/mp3/Script/SoundModifier.xml @@ -32,9 +32,9 @@ - script/common/SoundModifier.txtr - - 0.5 + script/common/SoundModifier.txtr + + 0.5 enabled enabled diff --git a/templates/mp3/Script/SpawnPoint.xml b/templates/mp3/Script/SpawnPoint.xml index 9c727970..607a7928 100644 --- a/templates/mp3/Script/SpawnPoint.xml +++ b/templates/mp3/Script/SpawnPoint.xml @@ -176,7 +176,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/SpecialFunction.xml b/templates/mp3/Script/SpecialFunction.xml index ef119d53..bf306ac8 100644 --- a/templates/mp3/Script/SpecialFunction.xml +++ b/templates/mp3/Script/SpecialFunction.xml @@ -112,10 +112,10 @@ - + script/common/SpecialFunction.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp3/Script/SpiderBallAttractionSurface.xml b/templates/mp3/Script/SpiderBallAttractionSurface.xml index 9b00d0a5..140da75a 100644 --- a/templates/mp3/Script/SpiderBallAttractionSurface.xml +++ b/templates/mp3/Script/SpiderBallAttractionSurface.xml @@ -16,7 +16,7 @@ script/common/SpiderBallAttractionSurface.txtr - + enabled volume diff --git a/templates/mp3/Script/Spinner.xml b/templates/mp3/Script/Spinner.xml index d00fd8df..076f7c3a 100644 --- a/templates/mp3/Script/Spinner.xml +++ b/templates/mp3/Script/Spinner.xml @@ -45,7 +45,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/StreamedAudio.xml b/templates/mp3/Script/StreamedAudio.xml index a01397a0..8ea76407 100644 --- a/templates/mp3/Script/StreamedAudio.xml +++ b/templates/mp3/Script/StreamedAudio.xml @@ -57,9 +57,9 @@ - script/common/StreamedAudio.txtr - - 0.5 + script/common/StreamedAudio.txtr + + 0.5 enabled enabled diff --git a/templates/mp3/Script/StreamedAudioModifier.xml b/templates/mp3/Script/StreamedAudioModifier.xml index 27c2e1fe..dbdbcd6b 100644 --- a/templates/mp3/Script/StreamedAudioModifier.xml +++ b/templates/mp3/Script/StreamedAudioModifier.xml @@ -26,7 +26,7 @@ script/common/StreamedAudioModifier.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/StreamedMovie.xml b/templates/mp3/Script/StreamedMovie.xml index 5abf6967..b0d53a31 100644 --- a/templates/mp3/Script/StreamedMovie.xml +++ b/templates/mp3/Script/StreamedMovie.xml @@ -37,9 +37,9 @@ - script/common/StreamedMovie.txtr - - 0.5 + script/common/StreamedMovie.txtr + + 0.5 enabled enabled diff --git a/templates/mp3/Script/Subtitles.xml b/templates/mp3/Script/Subtitles.xml index afacd153..c8c24340 100644 --- a/templates/mp3/Script/Subtitles.xml +++ b/templates/mp3/Script/Subtitles.xml @@ -63,7 +63,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/SurfaceControl.xml b/templates/mp3/Script/SurfaceControl.xml index df92fac8..64410671 100644 --- a/templates/mp3/Script/SurfaceControl.xml +++ b/templates/mp3/Script/SurfaceControl.xml @@ -26,7 +26,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/Switch.xml b/templates/mp3/Script/Switch.xml index d6657a72..aa0218e4 100644 --- a/templates/mp3/Script/Switch.xml +++ b/templates/mp3/Script/Switch.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/TargetingPoint.xml b/templates/mp3/Script/TargetingPoint.xml index 2fcd7335..d2b3e6f4 100644 --- a/templates/mp3/Script/TargetingPoint.xml +++ b/templates/mp3/Script/TargetingPoint.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/TeamAI.xml b/templates/mp3/Script/TeamAI.xml index a3d6b68c..d41c042a 100644 --- a/templates/mp3/Script/TeamAI.xml +++ b/templates/mp3/Script/TeamAI.xml @@ -54,7 +54,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/TextPane.xml b/templates/mp3/Script/TextPane.xml index d2b41698..5ec0ab31 100644 --- a/templates/mp3/Script/TextPane.xml +++ b/templates/mp3/Script/TextPane.xml @@ -80,7 +80,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/TimeKeyframe.xml b/templates/mp3/Script/TimeKeyframe.xml index 39a2c7bd..43121e91 100644 --- a/templates/mp3/Script/TimeKeyframe.xml +++ b/templates/mp3/Script/TimeKeyframe.xml @@ -18,7 +18,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/Timer.xml b/templates/mp3/Script/Timer.xml index 97824532..1d3057f1 100644 --- a/templates/mp3/Script/Timer.xml +++ b/templates/mp3/Script/Timer.xml @@ -28,8 +28,8 @@ script/common/Timer.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp3/Script/VisorFlare.xml b/templates/mp3/Script/VisorFlare.xml index 5d73d29e..85b388a3 100644 --- a/templates/mp3/Script/VisorFlare.xml +++ b/templates/mp3/Script/VisorFlare.xml @@ -68,9 +68,9 @@ - script/common/VisorFlare.txtr - - 0.5 + script/common/VisorFlare.txtr + + 0.5 enabled enabled diff --git a/templates/mp3/Script/VisorGoo.xml b/templates/mp3/Script/VisorGoo.xml index 5e0a2133..88f91430 100644 --- a/templates/mp3/Script/VisorGoo.xml +++ b/templates/mp3/Script/VisorGoo.xml @@ -43,8 +43,8 @@ script/common/VisorGoo.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp3/Script/VolGroup.xml b/templates/mp3/Script/VolGroup.xml index bb399498..c93ce8e1 100644 --- a/templates/mp3/Script/VolGroup.xml +++ b/templates/mp3/Script/VolGroup.xml @@ -19,7 +19,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/WeaponGenerator.xml b/templates/mp3/Script/WeaponGenerator.xml index 64ded6f4..9b39e6b5 100644 --- a/templates/mp3/Script/WeaponGenerator.xml +++ b/templates/mp3/Script/WeaponGenerator.xml @@ -42,9 +42,9 @@ - script/mp3/WeaponGenerator.txtr - - 0.5 + script/mp3/WeaponGenerator.txtr + + 0.5 enabled enabled diff --git a/templates/mp3/Script/WorldAttributes.xml b/templates/mp3/Script/WorldAttributes.xml index f75c813a..66d9589a 100644 --- a/templates/mp3/Script/WorldAttributes.xml +++ b/templates/mp3/Script/WorldAttributes.xml @@ -17,7 +17,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/WorldLightFader.xml b/templates/mp3/Script/WorldLightFader.xml index 71495206..fb13041e 100644 --- a/templates/mp3/Script/WorldLightFader.xml +++ b/templates/mp3/Script/WorldLightFader.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/WorldTeleporter.xml b/templates/mp3/Script/WorldTeleporter.xml index a6741359..c240e4f3 100644 --- a/templates/mp3/Script/WorldTeleporter.xml +++ b/templates/mp3/Script/WorldTeleporter.xml @@ -88,7 +88,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/WorldTeleporterAttributes.xml b/templates/mp3/Script/WorldTeleporterAttributes.xml index c9d40423..1d69fd09 100644 --- a/templates/mp3/Script/WorldTeleporterAttributes.xml +++ b/templates/mp3/Script/WorldTeleporterAttributes.xml @@ -135,7 +135,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Script/WorldTransitionChoiceRelay.xml b/templates/mp3/Script/WorldTransitionChoiceRelay.xml index 04742ee4..e8effbec 100644 --- a/templates/mp3/Script/WorldTransitionChoiceRelay.xml +++ b/templates/mp3/Script/WorldTransitionChoiceRelay.xml @@ -78,7 +78,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3/Structs/LayerID.xml b/templates/mp3/Structs/LayerID.xml index 57a2012a..3c964dd2 100644 --- a/templates/mp3/Structs/LayerID.xml +++ b/templates/mp3/Structs/LayerID.xml @@ -1,9 +1,17 @@ - - - - + + 0 + + + 0 + + + 0 + + + 0 + diff --git a/templates/mp3/Structs/LayerSwitch.xml b/templates/mp3/Structs/LayerSwitch.xml index cfb457a9..eb9604f2 100644 --- a/templates/mp3/Structs/LayerSwitch.xml +++ b/templates/mp3/Structs/LayerSwitch.xml @@ -1,7 +1,9 @@ - - - - + + + + 0 + + diff --git a/templates/mp3/Structs/LightParameters.xml b/templates/mp3/Structs/LightParameters.xml index 463f21a8..f8b5fafe 100644 --- a/templates/mp3/Structs/LightParameters.xml +++ b/templates/mp3/Structs/LightParameters.xml @@ -11,13 +11,13 @@ true - 1 - - - - - - + 0x01 + + + + + + true diff --git a/templates/mp3/Structs/MayaSpline.xml b/templates/mp3/Structs/MayaSpline.xml index 59869570..d8759fcf 100644 --- a/templates/mp3/Structs/MayaSpline.xml +++ b/templates/mp3/Structs/MayaSpline.xml @@ -1,4 +1,4 @@ - + diff --git a/templates/mp3/Structs/Transform.xml b/templates/mp3/Structs/Transform.xml index 1fab3e98..5fe91767 100644 --- a/templates/mp3/Structs/Transform.xml +++ b/templates/mp3/Structs/Transform.xml @@ -1,14 +1,14 @@ - - - 0,0,0 - - - 0,0,0 - - - 1,1,1 - - + + + 0.0, 0.0, 0.0 + + + 0.0, 0.0, 0.0 + + + 1.0, 1.0, 1.0 + + diff --git a/templates/mp3/Structs/WeaponVulnerability.xml b/templates/mp3/Structs/WeaponVulnerability.xml index ec3f5861..544b4c16 100644 --- a/templates/mp3/Structs/WeaponVulnerability.xml +++ b/templates/mp3/Structs/WeaponVulnerability.xml @@ -3,7 +3,7 @@ 100.0 - % + % 0 diff --git a/templates/mp3proto/Enums/Item.xml b/templates/mp3proto/Enums/Item.xml index 084dc852..b7b0421b 100644 --- a/templates/mp3proto/Enums/Item.xml +++ b/templates/mp3proto/Enums/Item.xml @@ -1,41 +1,41 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/templates/mp3proto/Enums/LocationOfEffect1.xml b/templates/mp3proto/Enums/LocationOfEffect1.xml index 9701063a..c35da969 100644 --- a/templates/mp3proto/Enums/LocationOfEffect1.xml +++ b/templates/mp3proto/Enums/LocationOfEffect1.xml @@ -1,8 +1,8 @@ - - - - - + + + + + diff --git a/templates/mp3proto/Enums/Orientation.xml b/templates/mp3proto/Enums/Orientation.xml index 35733fa2..2f944946 100644 --- a/templates/mp3proto/Enums/Orientation.xml +++ b/templates/mp3proto/Enums/Orientation.xml @@ -1,8 +1,8 @@ - - - - - + + + + + diff --git a/templates/mp3proto/MasterTemplate.xml b/templates/mp3proto/MasterTemplate.xml index 886cef6d..2d2d8c38 100644 --- a/templates/mp3proto/MasterTemplate.xml +++ b/templates/mp3proto/MasterTemplate.xml @@ -1,160 +1,160 @@ - - - + - + - + + + - - - - + - + + + + - - - - - - - - + + + + + - + + - + + + - - - + + - - + + + - + + + + + + + - - - - - + - + - - + + + + - - - - - - + + - - - - - + + + + + + - + + + + - + + + - - + - - - - - - - - + + + + - + - - + - - + + + + + - - - + + - - - + + - + - - + diff --git a/templates/mp3proto/Script/AITaskPoint.xml b/templates/mp3proto/Script/AITaskPoint.xml index 14637067..102e1b82 100644 --- a/templates/mp3proto/Script/AITaskPoint.xml +++ b/templates/mp3proto/Script/AITaskPoint.xml @@ -84,7 +84,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/Actor.xml b/templates/mp3proto/Script/Actor.xml index 7b8719c0..8c0baff8 100644 --- a/templates/mp3proto/Script/Actor.xml +++ b/templates/mp3proto/Script/Actor.xml @@ -73,7 +73,7 @@ 0xA244C9D8 0xC27FFA8F - 0x0FC966DC + 0x0FC966DC enabled enabled diff --git a/templates/mp3proto/Script/ActorKeyframe.xml b/templates/mp3proto/Script/ActorKeyframe.xml index a7a42166..06fe5ac1 100644 --- a/templates/mp3proto/Script/ActorKeyframe.xml +++ b/templates/mp3proto/Script/ActorKeyframe.xml @@ -33,7 +33,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/ActorMorph.xml b/templates/mp3proto/Script/ActorMorph.xml index f524f15e..6a38e0af 100644 --- a/templates/mp3proto/Script/ActorMorph.xml +++ b/templates/mp3proto/Script/ActorMorph.xml @@ -22,7 +22,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/ActorTransform.xml b/templates/mp3proto/Script/ActorTransform.xml index 78efb9c9..d2219b4a 100644 --- a/templates/mp3proto/Script/ActorTransform.xml +++ b/templates/mp3proto/Script/ActorTransform.xml @@ -42,7 +42,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/AreaAttributes.xml b/templates/mp3proto/Script/AreaAttributes.xml index f07e08c9..4624e45e 100644 --- a/templates/mp3proto/Script/AreaAttributes.xml +++ b/templates/mp3proto/Script/AreaAttributes.xml @@ -37,9 +37,9 @@ - script/common/AreaAttributes.txtr - - 0.5 + script/common/AreaAttributes.txtr + + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/AreaDamage.xml b/templates/mp3proto/Script/AreaDamage.xml index dfd7cf51..751aefc0 100644 --- a/templates/mp3proto/Script/AreaDamage.xml +++ b/templates/mp3proto/Script/AreaDamage.xml @@ -22,7 +22,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/CameraBlurKeyframe.xml b/templates/mp3proto/Script/CameraBlurKeyframe.xml index d21f378e..16df405b 100644 --- a/templates/mp3proto/Script/CameraBlurKeyframe.xml +++ b/templates/mp3proto/Script/CameraBlurKeyframe.xml @@ -30,7 +30,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/CameraFilterKeyframe.xml b/templates/mp3proto/Script/CameraFilterKeyframe.xml index 7c017e92..00a237c0 100644 --- a/templates/mp3proto/Script/CameraFilterKeyframe.xml +++ b/templates/mp3proto/Script/CameraFilterKeyframe.xml @@ -37,7 +37,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/CameraHint.xml b/templates/mp3proto/Script/CameraHint.xml index 94ea109b..59027911 100644 --- a/templates/mp3proto/Script/CameraHint.xml +++ b/templates/mp3proto/Script/CameraHint.xml @@ -274,7 +274,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/CameraPitch.xml b/templates/mp3proto/Script/CameraPitch.xml index ffa8d316..598fb22a 100644 --- a/templates/mp3proto/Script/CameraPitch.xml +++ b/templates/mp3proto/Script/CameraPitch.xml @@ -17,7 +17,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/CameraShaker.xml b/templates/mp3proto/Script/CameraShaker.xml index ed7f703a..470c2f35 100644 --- a/templates/mp3proto/Script/CameraShaker.xml +++ b/templates/mp3proto/Script/CameraShaker.xml @@ -32,7 +32,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/ColorModulate.xml b/templates/mp3proto/Script/ColorModulate.xml index 8c32c365..c588b2a1 100644 --- a/templates/mp3proto/Script/ColorModulate.xml +++ b/templates/mp3proto/Script/ColorModulate.xml @@ -63,7 +63,7 @@ script/common/ColorModulate.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/ConditionalRelay.xml b/templates/mp3proto/Script/ConditionalRelay.xml index a9096fb1..56277eaa 100644 --- a/templates/mp3proto/Script/ConditionalRelay.xml +++ b/templates/mp3proto/Script/ConditionalRelay.xml @@ -45,7 +45,7 @@ script/common/ConditionalRelay.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/ContextSensitiveAction.xml b/templates/mp3proto/Script/ContextSensitiveAction.xml index 4efdfcd2..2a2dd728 100644 --- a/templates/mp3proto/Script/ContextSensitiveAction.xml +++ b/templates/mp3proto/Script/ContextSensitiveAction.xml @@ -19,7 +19,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/ContextSensitiveActivator.xml b/templates/mp3proto/Script/ContextSensitiveActivator.xml index 15dc71cd..9396e20e 100644 --- a/templates/mp3proto/Script/ContextSensitiveActivator.xml +++ b/templates/mp3proto/Script/ContextSensitiveActivator.xml @@ -27,7 +27,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/ControlHint.xml b/templates/mp3proto/Script/ControlHint.xml index 1c9c942a..9826fec3 100644 --- a/templates/mp3proto/Script/ControlHint.xml +++ b/templates/mp3proto/Script/ControlHint.xml @@ -44,7 +44,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/ControllerAction.xml b/templates/mp3proto/Script/ControllerAction.xml index 6913d152..5fbf358e 100644 --- a/templates/mp3proto/Script/ControllerAction.xml +++ b/templates/mp3proto/Script/ControllerAction.xml @@ -19,7 +19,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/Counter.xml b/templates/mp3proto/Script/Counter.xml index b23e8e2f..c82d3d6c 100644 --- a/templates/mp3proto/Script/Counter.xml +++ b/templates/mp3proto/Script/Counter.xml @@ -61,9 +61,9 @@ - script/common/Counter.txtr - - 0.5 + script/common/Counter.txtr + + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/CoverPoint.xml b/templates/mp3proto/Script/CoverPoint.xml index 93ce6d45..98ba9300 100644 --- a/templates/mp3proto/Script/CoverPoint.xml +++ b/templates/mp3proto/Script/CoverPoint.xml @@ -36,7 +36,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/CrossAreaRelay.xml b/templates/mp3proto/Script/CrossAreaRelay.xml index e4a476c8..3ada6089 100644 --- a/templates/mp3proto/Script/CrossAreaRelay.xml +++ b/templates/mp3proto/Script/CrossAreaRelay.xml @@ -16,7 +16,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/DamageActor.xml b/templates/mp3proto/Script/DamageActor.xml index 123df8ab..55a4adb9 100644 --- a/templates/mp3proto/Script/DamageActor.xml +++ b/templates/mp3proto/Script/DamageActor.xml @@ -16,7 +16,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/DamageableTrigger.xml b/templates/mp3proto/Script/DamageableTrigger.xml index 43f4564e..380b4840 100644 --- a/templates/mp3proto/Script/DamageableTrigger.xml +++ b/templates/mp3proto/Script/DamageableTrigger.xml @@ -27,8 +27,8 @@ - script/common/DamageableTrigger.txtr - + script/common/DamageableTrigger.txtr + enabled volume diff --git a/templates/mp3proto/Script/DistanceFog.xml b/templates/mp3proto/Script/DistanceFog.xml index b3e5432f..0171fb79 100644 --- a/templates/mp3proto/Script/DistanceFog.xml +++ b/templates/mp3proto/Script/DistanceFog.xml @@ -35,9 +35,9 @@ - script/common/DistanceFog.txtr - - 0.5 + script/common/DistanceFog.txtr + + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/Dock.xml b/templates/mp3proto/Script/Dock.xml index 96b4965f..566c65cc 100644 --- a/templates/mp3proto/Script/Dock.xml +++ b/templates/mp3proto/Script/Dock.xml @@ -31,9 +31,9 @@ script/common/Dock.txtr - + enabled volume - + diff --git a/templates/mp3proto/Script/DynamicLight.xml b/templates/mp3proto/Script/DynamicLight.xml index a952cb93..d8b65b4f 100644 --- a/templates/mp3proto/Script/DynamicLight.xml +++ b/templates/mp3proto/Script/DynamicLight.xml @@ -98,7 +98,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/Effect.xml b/templates/mp3proto/Script/Effect.xml index 0d7a5c9a..5db0dbb1 100644 --- a/templates/mp3proto/Script/Effect.xml +++ b/templates/mp3proto/Script/Effect.xml @@ -86,7 +86,7 @@ script/common/Effect.txtr - + enabled enabled diff --git a/templates/mp3proto/Script/EffectRepulsor.xml b/templates/mp3proto/Script/EffectRepulsor.xml index e4898fb1..358f14bf 100644 --- a/templates/mp3proto/Script/EffectRepulsor.xml +++ b/templates/mp3proto/Script/EffectRepulsor.xml @@ -32,7 +32,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/ElectroMagneticPulse.xml b/templates/mp3proto/Script/ElectroMagneticPulse.xml index d36c9bb0..2464140d 100644 --- a/templates/mp3proto/Script/ElectroMagneticPulse.xml +++ b/templates/mp3proto/Script/ElectroMagneticPulse.xml @@ -43,7 +43,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/EnvFxDensityController.xml b/templates/mp3proto/Script/EnvFxDensityController.xml index 05537af9..9bc9d147 100644 --- a/templates/mp3proto/Script/EnvFxDensityController.xml +++ b/templates/mp3proto/Script/EnvFxDensityController.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/FalsePerspective.xml b/templates/mp3proto/Script/FalsePerspective.xml index 26971dc8..ad8ebbf3 100644 --- a/templates/mp3proto/Script/FalsePerspective.xml +++ b/templates/mp3proto/Script/FalsePerspective.xml @@ -24,7 +24,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/FishCloudModifier.xml b/templates/mp3proto/Script/FishCloudModifier.xml index 447ab49e..ba804819 100644 --- a/templates/mp3proto/Script/FishCloudModifier.xml +++ b/templates/mp3proto/Script/FishCloudModifier.xml @@ -27,7 +27,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/FogOverlay.xml b/templates/mp3proto/Script/FogOverlay.xml index 8d124cec..b212c63c 100644 --- a/templates/mp3proto/Script/FogOverlay.xml +++ b/templates/mp3proto/Script/FogOverlay.xml @@ -60,7 +60,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/FrontEndDataNetwork.xml b/templates/mp3proto/Script/FrontEndDataNetwork.xml index 6dac93c2..439af277 100644 --- a/templates/mp3proto/Script/FrontEndDataNetwork.xml +++ b/templates/mp3proto/Script/FrontEndDataNetwork.xml @@ -79,7 +79,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/GeneratedObjectDeleter.xml b/templates/mp3proto/Script/GeneratedObjectDeleter.xml index 648ddb09..b5b048a6 100644 --- a/templates/mp3proto/Script/GeneratedObjectDeleter.xml +++ b/templates/mp3proto/Script/GeneratedObjectDeleter.xml @@ -28,7 +28,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/Generator.xml b/templates/mp3proto/Script/Generator.xml index 9d13bbb8..09d591fd 100644 --- a/templates/mp3proto/Script/Generator.xml +++ b/templates/mp3proto/Script/Generator.xml @@ -44,7 +44,7 @@ script/common/Generator.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/GrapplePoint.xml b/templates/mp3proto/Script/GrapplePoint.xml index 08e628fb..2896b623 100644 --- a/templates/mp3proto/Script/GrapplePoint.xml +++ b/templates/mp3proto/Script/GrapplePoint.xml @@ -36,8 +36,8 @@ script/common/GrapplePoint.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/GuiMenu.xml b/templates/mp3proto/Script/GuiMenu.xml index b1a2f950..00e09db6 100644 --- a/templates/mp3proto/Script/GuiMenu.xml +++ b/templates/mp3proto/Script/GuiMenu.xml @@ -29,7 +29,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/GuiPlayerJoinManager.xml b/templates/mp3proto/Script/GuiPlayerJoinManager.xml index cde73bfa..263a17e5 100644 --- a/templates/mp3proto/Script/GuiPlayerJoinManager.xml +++ b/templates/mp3proto/Script/GuiPlayerJoinManager.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/GuiScreen.xml b/templates/mp3proto/Script/GuiScreen.xml index 73a48c2f..0e93630a 100644 --- a/templates/mp3proto/Script/GuiScreen.xml +++ b/templates/mp3proto/Script/GuiScreen.xml @@ -19,7 +19,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/GuiSlider.xml b/templates/mp3proto/Script/GuiSlider.xml index 7981581d..f829a5ce 100644 --- a/templates/mp3proto/Script/GuiSlider.xml +++ b/templates/mp3proto/Script/GuiSlider.xml @@ -38,7 +38,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/GuiWidget.xml b/templates/mp3proto/Script/GuiWidget.xml index 76989b0c..723d6a7f 100644 --- a/templates/mp3proto/Script/GuiWidget.xml +++ b/templates/mp3proto/Script/GuiWidget.xml @@ -22,7 +22,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/HUDHint.xml b/templates/mp3proto/Script/HUDHint.xml index 5c396e2a..01bc877d 100644 --- a/templates/mp3proto/Script/HUDHint.xml +++ b/templates/mp3proto/Script/HUDHint.xml @@ -34,7 +34,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/HUDMemo.xml b/templates/mp3proto/Script/HUDMemo.xml index 6db7a078..016da4c9 100644 --- a/templates/mp3proto/Script/HUDMemo.xml +++ b/templates/mp3proto/Script/HUDMemo.xml @@ -44,8 +44,8 @@ script/common/HUDMemo.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/LUAScript.xml b/templates/mp3proto/Script/LUAScript.xml index c85acf9d..607591c3 100644 --- a/templates/mp3proto/Script/LUAScript.xml +++ b/templates/mp3proto/Script/LUAScript.xml @@ -19,7 +19,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/LayerController.xml b/templates/mp3proto/Script/LayerController.xml index 875f4ed3..2e198186 100644 --- a/templates/mp3proto/Script/LayerController.xml +++ b/templates/mp3proto/Script/LayerController.xml @@ -19,7 +19,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/MemoryRelay.xml b/templates/mp3proto/Script/MemoryRelay.xml index 995ba1f7..dbea4d13 100644 --- a/templates/mp3proto/Script/MemoryRelay.xml +++ b/templates/mp3proto/Script/MemoryRelay.xml @@ -23,7 +23,7 @@ script/common/MemoryRelay.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/OptionalAreaAsset.xml b/templates/mp3proto/Script/OptionalAreaAsset.xml index e287a58b..0a9944b6 100644 --- a/templates/mp3proto/Script/OptionalAreaAsset.xml +++ b/templates/mp3proto/Script/OptionalAreaAsset.xml @@ -23,7 +23,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/PathControl.xml b/templates/mp3proto/Script/PathControl.xml index ed6e8253..836b200d 100644 --- a/templates/mp3proto/Script/PathControl.xml +++ b/templates/mp3proto/Script/PathControl.xml @@ -27,7 +27,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/PathMeshCtrl.xml b/templates/mp3proto/Script/PathMeshCtrl.xml index 40696f82..f1137906 100644 --- a/templates/mp3proto/Script/PathMeshCtrl.xml +++ b/templates/mp3proto/Script/PathMeshCtrl.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/Platform.xml b/templates/mp3proto/Script/Platform.xml index 742cd435..042a7b61 100644 --- a/templates/mp3proto/Script/Platform.xml +++ b/templates/mp3proto/Script/Platform.xml @@ -52,7 +52,7 @@ 0xA3D63F44 0xC27FFA8F - 0x0FC966DC + 0x0FC966DC enabled enabled diff --git a/templates/mp3proto/Script/PlayerController.xml b/templates/mp3proto/Script/PlayerController.xml index f355eeaa..4d84b58b 100644 --- a/templates/mp3proto/Script/PlayerController.xml +++ b/templates/mp3proto/Script/PlayerController.xml @@ -57,7 +57,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/PlayerGravityScalar.xml b/templates/mp3proto/Script/PlayerGravityScalar.xml index 93bad313..2f77db4f 100644 --- a/templates/mp3proto/Script/PlayerGravityScalar.xml +++ b/templates/mp3proto/Script/PlayerGravityScalar.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/PlayerHint.xml b/templates/mp3proto/Script/PlayerHint.xml index 686dbe04..e7a05257 100644 --- a/templates/mp3proto/Script/PlayerHint.xml +++ b/templates/mp3proto/Script/PlayerHint.xml @@ -27,7 +27,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/PlayerTurret.xml b/templates/mp3proto/Script/PlayerTurret.xml index c9a06c48..9e17638b 100644 --- a/templates/mp3proto/Script/PlayerTurret.xml +++ b/templates/mp3proto/Script/PlayerTurret.xml @@ -50,7 +50,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/PointOfInterest.xml b/templates/mp3proto/Script/PointOfInterest.xml index 23301a98..810d89ee 100644 --- a/templates/mp3proto/Script/PointOfInterest.xml +++ b/templates/mp3proto/Script/PointOfInterest.xml @@ -23,8 +23,8 @@ script/common/PointOfInterest.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/PositionRelay.xml b/templates/mp3proto/Script/PositionRelay.xml index a7bcda48..642bcbe0 100644 --- a/templates/mp3proto/Script/PositionRelay.xml +++ b/templates/mp3proto/Script/PositionRelay.xml @@ -18,7 +18,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/RadialDamage.xml b/templates/mp3proto/Script/RadialDamage.xml index c1f530b2..c888f387 100644 --- a/templates/mp3proto/Script/RadialDamage.xml +++ b/templates/mp3proto/Script/RadialDamage.xml @@ -28,7 +28,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/Relay.xml b/templates/mp3proto/Script/Relay.xml index 8608cf9a..6c2f582f 100644 --- a/templates/mp3proto/Script/Relay.xml +++ b/templates/mp3proto/Script/Relay.xml @@ -20,7 +20,7 @@ script/common/Relay.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/RelayRandom.xml b/templates/mp3proto/Script/RelayRandom.xml index 9d6ab6c3..f222e91c 100644 --- a/templates/mp3proto/Script/RelayRandom.xml +++ b/templates/mp3proto/Script/RelayRandom.xml @@ -32,7 +32,7 @@ script/common/RandomRelay.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/Repulsor.xml b/templates/mp3proto/Script/Repulsor.xml index b3e643bc..3f3e3e14 100644 --- a/templates/mp3proto/Script/Repulsor.xml +++ b/templates/mp3proto/Script/Repulsor.xml @@ -27,7 +27,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/Ripple.xml b/templates/mp3proto/Script/Ripple.xml index 7faf5148..d25bdad2 100644 --- a/templates/mp3proto/Script/Ripple.xml +++ b/templates/mp3proto/Script/Ripple.xml @@ -18,7 +18,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/RoomAcoustics.xml b/templates/mp3proto/Script/RoomAcoustics.xml index 49b37149..2a5b7ca7 100644 --- a/templates/mp3proto/Script/RoomAcoustics.xml +++ b/templates/mp3proto/Script/RoomAcoustics.xml @@ -174,7 +174,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/RumbleEffect.xml b/templates/mp3proto/Script/RumbleEffect.xml index 58ed8777..ec927e2f 100644 --- a/templates/mp3proto/Script/RumbleEffect.xml +++ b/templates/mp3proto/Script/RumbleEffect.xml @@ -24,7 +24,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/ScrewAttackWallJumpTarget.xml b/templates/mp3proto/Script/ScrewAttackWallJumpTarget.xml index da39acc6..c54e011c 100644 --- a/templates/mp3proto/Script/ScrewAttackWallJumpTarget.xml +++ b/templates/mp3proto/Script/ScrewAttackWallJumpTarget.xml @@ -15,7 +15,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/SequenceTimer.xml b/templates/mp3proto/Script/SequenceTimer.xml index c4912dec..7457f93e 100644 --- a/templates/mp3proto/Script/SequenceTimer.xml +++ b/templates/mp3proto/Script/SequenceTimer.xml @@ -4,25 +4,32 @@ - 0 - Connection + Connection - - - Activation Time - - - - Always 0 - - - - Always 0 - - - + + 0 + + + Activation Time + + + 0.0 + + + 0 + Always 0 + + + 0 + + + 0 + Always 0 + + + - + 0.0 @@ -55,7 +62,7 @@ script/common/SequenceTimer.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/ShadowProjector.xml b/templates/mp3proto/Script/ShadowProjector.xml index 39af7037..cb61e07b 100644 --- a/templates/mp3proto/Script/ShadowProjector.xml +++ b/templates/mp3proto/Script/ShadowProjector.xml @@ -36,7 +36,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/ShipCommandIcon.xml b/templates/mp3proto/Script/ShipCommandIcon.xml index 1c5b27db..302800ed 100644 --- a/templates/mp3proto/Script/ShipCommandIcon.xml +++ b/templates/mp3proto/Script/ShipCommandIcon.xml @@ -27,7 +27,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/ShipCommandPath.xml b/templates/mp3proto/Script/ShipCommandPath.xml index 25fe4d42..ebf3802f 100644 --- a/templates/mp3proto/Script/ShipCommandPath.xml +++ b/templates/mp3proto/Script/ShipCommandPath.xml @@ -31,7 +31,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/SkyRipple.xml b/templates/mp3proto/Script/SkyRipple.xml index d468d1b4..0ab2f395 100644 --- a/templates/mp3proto/Script/SkyRipple.xml +++ b/templates/mp3proto/Script/SkyRipple.xml @@ -15,7 +15,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/Sound.xml b/templates/mp3proto/Script/Sound.xml index c68f4056..ece8d703 100644 --- a/templates/mp3proto/Script/Sound.xml +++ b/templates/mp3proto/Script/Sound.xml @@ -74,9 +74,9 @@ - script/common/Sound.txtr - - 0.5 + script/common/Sound.txtr + + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/SoundModifier.xml b/templates/mp3proto/Script/SoundModifier.xml index 45c6f0df..7ed03883 100644 --- a/templates/mp3proto/Script/SoundModifier.xml +++ b/templates/mp3proto/Script/SoundModifier.xml @@ -28,9 +28,9 @@ - script/common/SoundModifier.txtr - - 0.5 + script/common/SoundModifier.txtr + + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/SpawnPoint.xml b/templates/mp3proto/Script/SpawnPoint.xml index 112495b2..0f9b1041 100644 --- a/templates/mp3proto/Script/SpawnPoint.xml +++ b/templates/mp3proto/Script/SpawnPoint.xml @@ -146,7 +146,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/SpecialFunction.xml b/templates/mp3proto/Script/SpecialFunction.xml index c9e8dc8e..932df8ed 100644 --- a/templates/mp3proto/Script/SpecialFunction.xml +++ b/templates/mp3proto/Script/SpecialFunction.xml @@ -115,10 +115,10 @@ - + script/common/SpecialFunction.txtr - - 0.5 + + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/SpiderBallAttractionSurface.xml b/templates/mp3proto/Script/SpiderBallAttractionSurface.xml index 9b00d0a5..140da75a 100644 --- a/templates/mp3proto/Script/SpiderBallAttractionSurface.xml +++ b/templates/mp3proto/Script/SpiderBallAttractionSurface.xml @@ -16,7 +16,7 @@ script/common/SpiderBallAttractionSurface.txtr - + enabled volume diff --git a/templates/mp3proto/Script/Spinner.xml b/templates/mp3proto/Script/Spinner.xml index 684a6b67..b838c83b 100644 --- a/templates/mp3proto/Script/Spinner.xml +++ b/templates/mp3proto/Script/Spinner.xml @@ -42,7 +42,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/StreamedAudio.xml b/templates/mp3proto/Script/StreamedAudio.xml index 8ef1ccc8..f6fb1415 100644 --- a/templates/mp3proto/Script/StreamedAudio.xml +++ b/templates/mp3proto/Script/StreamedAudio.xml @@ -34,9 +34,9 @@ - script/common/StreamedAudio.txtr - - 0.5 + script/common/StreamedAudio.txtr + + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/StreamedMovie.xml b/templates/mp3proto/Script/StreamedMovie.xml index 5abf6967..b0d53a31 100644 --- a/templates/mp3proto/Script/StreamedMovie.xml +++ b/templates/mp3proto/Script/StreamedMovie.xml @@ -37,9 +37,9 @@ - script/common/StreamedMovie.txtr - - 0.5 + script/common/StreamedMovie.txtr + + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/Subtitles.xml b/templates/mp3proto/Script/Subtitles.xml index afacd153..c8c24340 100644 --- a/templates/mp3proto/Script/Subtitles.xml +++ b/templates/mp3proto/Script/Subtitles.xml @@ -63,7 +63,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/SurfaceControl.xml b/templates/mp3proto/Script/SurfaceControl.xml index df92fac8..64410671 100644 --- a/templates/mp3proto/Script/SurfaceControl.xml +++ b/templates/mp3proto/Script/SurfaceControl.xml @@ -26,7 +26,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/Switch.xml b/templates/mp3proto/Script/Switch.xml index d6657a72..aa0218e4 100644 --- a/templates/mp3proto/Script/Switch.xml +++ b/templates/mp3proto/Script/Switch.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/TargetingPoint.xml b/templates/mp3proto/Script/TargetingPoint.xml index 2fcd7335..d2b3e6f4 100644 --- a/templates/mp3proto/Script/TargetingPoint.xml +++ b/templates/mp3proto/Script/TargetingPoint.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/TeamAiMgr.xml b/templates/mp3proto/Script/TeamAiMgr.xml index 71304442..528c4ff4 100644 --- a/templates/mp3proto/Script/TeamAiMgr.xml +++ b/templates/mp3proto/Script/TeamAiMgr.xml @@ -42,7 +42,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/TextPane.xml b/templates/mp3proto/Script/TextPane.xml index 60f86ec9..628fde7b 100644 --- a/templates/mp3proto/Script/TextPane.xml +++ b/templates/mp3proto/Script/TextPane.xml @@ -62,7 +62,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/TimeKeyframe.xml b/templates/mp3proto/Script/TimeKeyframe.xml index 39a2c7bd..43121e91 100644 --- a/templates/mp3proto/Script/TimeKeyframe.xml +++ b/templates/mp3proto/Script/TimeKeyframe.xml @@ -18,7 +18,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/Timer.xml b/templates/mp3proto/Script/Timer.xml index c165006a..1d3057f1 100644 --- a/templates/mp3proto/Script/Timer.xml +++ b/templates/mp3proto/Script/Timer.xml @@ -29,7 +29,7 @@ script/common/Timer.txtr - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/VisorFlare.xml b/templates/mp3proto/Script/VisorFlare.xml index 5d73d29e..85b388a3 100644 --- a/templates/mp3proto/Script/VisorFlare.xml +++ b/templates/mp3proto/Script/VisorFlare.xml @@ -68,9 +68,9 @@ - script/common/VisorFlare.txtr - - 0.5 + script/common/VisorFlare.txtr + + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/VisorGoo.xml b/templates/mp3proto/Script/VisorGoo.xml index 836d06e9..88f91430 100644 --- a/templates/mp3proto/Script/VisorGoo.xml +++ b/templates/mp3proto/Script/VisorGoo.xml @@ -42,9 +42,9 @@ - script/common/VisorGoo.txtr - - 0.5 + script/common/VisorGoo.txtr + + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/WeaponGenerator.xml b/templates/mp3proto/Script/WeaponGenerator.xml index 4672c110..308dad5e 100644 --- a/templates/mp3proto/Script/WeaponGenerator.xml +++ b/templates/mp3proto/Script/WeaponGenerator.xml @@ -38,9 +38,9 @@ - script/mp3/WeaponGenerator.txtr - - 0.5 + script/mp3/WeaponGenerator.txtr + + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/WorldLightFader.xml b/templates/mp3proto/Script/WorldLightFader.xml index 71495206..fb13041e 100644 --- a/templates/mp3proto/Script/WorldLightFader.xml +++ b/templates/mp3proto/Script/WorldLightFader.xml @@ -21,7 +21,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Script/WorldTeleporter.xml b/templates/mp3proto/Script/WorldTeleporter.xml index 5fea73c6..33dcc8a9 100644 --- a/templates/mp3proto/Script/WorldTeleporter.xml +++ b/templates/mp3proto/Script/WorldTeleporter.xml @@ -72,7 +72,7 @@ - 0.5 + 0.5 enabled enabled diff --git a/templates/mp3proto/Structs/LayerSwitch.xml b/templates/mp3proto/Structs/LayerSwitch.xml index cfb457a9..eb9604f2 100644 --- a/templates/mp3proto/Structs/LayerSwitch.xml +++ b/templates/mp3proto/Structs/LayerSwitch.xml @@ -1,7 +1,9 @@ - - - - + + + + 0 + + diff --git a/templates/mp3proto/Structs/LightParameters.xml b/templates/mp3proto/Structs/LightParameters.xml index 7543cbc2..3a5c6e42 100644 --- a/templates/mp3proto/Structs/LightParameters.xml +++ b/templates/mp3proto/Structs/LightParameters.xml @@ -23,13 +23,13 @@ true - 1 - - - - - - + 0x01 + + + + + + 1 diff --git a/templates/mp3proto/Structs/MayaSpline.xml b/templates/mp3proto/Structs/MayaSpline.xml index 59869570..d8759fcf 100644 --- a/templates/mp3proto/Structs/MayaSpline.xml +++ b/templates/mp3proto/Structs/MayaSpline.xml @@ -1,4 +1,4 @@ - + diff --git a/templates/mp3proto/Structs/Transform.xml b/templates/mp3proto/Structs/Transform.xml index 1fab3e98..5fe91767 100644 --- a/templates/mp3proto/Structs/Transform.xml +++ b/templates/mp3proto/Structs/Transform.xml @@ -1,14 +1,14 @@ - - - 0,0,0 - - - 0,0,0 - - - 1,1,1 - - + + + 0.0, 0.0, 0.0 + + + 0.0, 0.0, 0.0 + + + 1.0, 1.0, 1.0 + + diff --git a/templates/mp3proto/Structs/WeaponVulnerability.xml b/templates/mp3proto/Structs/WeaponVulnerability.xml index ec3f5861..544b4c16 100644 --- a/templates/mp3proto/Structs/WeaponVulnerability.xml +++ b/templates/mp3proto/Structs/WeaponVulnerability.xml @@ -3,7 +3,7 @@ 100.0 - % + % 0