Added "support" for MayaSpline properties
This commit is contained in:
parent
c1e3808196
commit
d39a9dd1c1
|
@ -92,6 +92,14 @@ void CScriptCooker::WriteProperty(IProperty *pProp)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case eMayaSplineProperty:
|
||||||
|
{
|
||||||
|
TMayaSplineProperty *pSplineCast = static_cast<TMayaSplineProperty*>(pProp);
|
||||||
|
std::vector<u8> Buffer = pSplineCast->Get();
|
||||||
|
mpSCLY->WriteBytes(Buffer.data(), Buffer.size());
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case eStructProperty:
|
case eStructProperty:
|
||||||
case eArrayProperty:
|
case eArrayProperty:
|
||||||
{
|
{
|
||||||
|
|
|
@ -146,6 +146,14 @@ void CScriptLoader::ReadProperty(IProperty *pProp, u32 Size, IInputStream& SCLY)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case eMayaSplineProperty: {
|
||||||
|
TMayaSplineProperty *pSplineCast = static_cast<TMayaSplineProperty*>(pProp);
|
||||||
|
std::vector<u8> Buffer(Size);
|
||||||
|
SCLY.ReadBytes(Buffer.data(), Buffer.size());
|
||||||
|
pSplineCast->Set(Buffer);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case eUnknownProperty: {
|
case eUnknownProperty: {
|
||||||
TUnknownProperty *pUnknownCast = static_cast<TUnknownProperty*>(pProp);
|
TUnknownProperty *pUnknownCast = static_cast<TUnknownProperty*>(pProp);
|
||||||
std::vector<u8> Buffer(Size);
|
std::vector<u8> Buffer(Size);
|
||||||
|
|
|
@ -186,6 +186,7 @@ IPropertyTemplate* CTemplateLoader::CreateProperty(u32 ID, EPropertyType Type, c
|
||||||
case eColorProperty: pOut = CREATE_PROP_TEMP(TColorTemplate); break;
|
case eColorProperty: pOut = CREATE_PROP_TEMP(TColorTemplate); break;
|
||||||
case eFileProperty: pOut = CREATE_PROP_TEMP(CFileTemplate); break;
|
case eFileProperty: pOut = CREATE_PROP_TEMP(CFileTemplate); break;
|
||||||
case eCharacterProperty: pOut = CREATE_PROP_TEMP(TCharacterTemplate); break;
|
case eCharacterProperty: pOut = CREATE_PROP_TEMP(TCharacterTemplate); break;
|
||||||
|
case eMayaSplineProperty: pOut = CREATE_PROP_TEMP(TMayaSplineTemplate); break;
|
||||||
case eEnumProperty: pOut = CREATE_PROP_TEMP(CEnumTemplate); break;
|
case eEnumProperty: pOut = CREATE_PROP_TEMP(CEnumTemplate); break;
|
||||||
case eBitfieldProperty: pOut = CREATE_PROP_TEMP(CBitfieldTemplate); break;
|
case eBitfieldProperty: pOut = CREATE_PROP_TEMP(CBitfieldTemplate); break;
|
||||||
case eArrayProperty: pOut = CREATE_PROP_TEMP(CArrayTemplate); break;
|
case eArrayProperty: pOut = CREATE_PROP_TEMP(CArrayTemplate); break;
|
||||||
|
|
|
@ -19,13 +19,14 @@ enum EPropertyType
|
||||||
eStructProperty,
|
eStructProperty,
|
||||||
eArrayProperty,
|
eArrayProperty,
|
||||||
eCharacterProperty,
|
eCharacterProperty,
|
||||||
|
eMayaSplineProperty,
|
||||||
eUnknownProperty,
|
eUnknownProperty,
|
||||||
eInvalidProperty
|
eInvalidProperty
|
||||||
};
|
};
|
||||||
|
|
||||||
// functions defined in CScriptTemplate.cpp
|
// functions defined in IPropertyTemplate.cpp
|
||||||
EPropertyType PropStringToPropEnum(const TString& prop);
|
EPropertyType PropStringToPropEnum(TString Prop);
|
||||||
TString PropEnumToPropString(EPropertyType prop);
|
TString PropEnumToPropString(EPropertyType Prop);
|
||||||
|
|
||||||
#endif // EPROPERTYTYPE
|
#endif // EPROPERTYTYPE
|
||||||
|
|
||||||
|
|
|
@ -151,6 +151,18 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class TMayaSplineProperty : public TTypedProperty<std::vector<u8>, eMayaSplineProperty, CMayaSplineValue>
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
TMayaSplineProperty(IPropertyTemplate *pTemp, CPropertyStruct *pParent)
|
||||||
|
: TTypedProperty(pTemp, pParent) {}
|
||||||
|
|
||||||
|
TMayaSplineProperty(IPropertyTemplate *pTemp, CPropertyStruct *pParent, const std::vector<u8>& v)
|
||||||
|
: TTypedProperty(pTemp, pParent, v) {}
|
||||||
|
|
||||||
|
virtual bool MatchesDefault() { return true; }
|
||||||
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* CPropertyStruct is for defining structs of properties.
|
* CPropertyStruct is for defining structs of properties.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -215,9 +215,9 @@ void CStructTemplate::DetermineVersionPropertyCounts()
|
||||||
}
|
}
|
||||||
|
|
||||||
// ************ GLOBAL FUNCTIONS ************
|
// ************ GLOBAL FUNCTIONS ************
|
||||||
TString PropEnumToPropString(EPropertyType prop)
|
TString PropEnumToPropString(EPropertyType Prop)
|
||||||
{
|
{
|
||||||
switch (prop)
|
switch (Prop)
|
||||||
{
|
{
|
||||||
case eBoolProperty: return "bool";
|
case eBoolProperty: return "bool";
|
||||||
case eByteProperty: return "byte";
|
case eByteProperty: return "byte";
|
||||||
|
@ -233,6 +233,7 @@ TString PropEnumToPropString(EPropertyType prop)
|
||||||
case eStructProperty: return "struct";
|
case eStructProperty: return "struct";
|
||||||
case eArrayProperty: return "array";
|
case eArrayProperty: return "array";
|
||||||
case eCharacterProperty: return "character";
|
case eCharacterProperty: return "character";
|
||||||
|
case eMayaSplineProperty: return "MayaSpline";
|
||||||
case eUnknownProperty: return "unknown";
|
case eUnknownProperty: return "unknown";
|
||||||
|
|
||||||
case eInvalidProperty:
|
case eInvalidProperty:
|
||||||
|
@ -241,23 +242,25 @@ TString PropEnumToPropString(EPropertyType prop)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
EPropertyType PropStringToPropEnum(const TString& rkProp)
|
EPropertyType PropStringToPropEnum(TString Prop)
|
||||||
{
|
{
|
||||||
if (rkProp == "bool") return eBoolProperty;
|
Prop = Prop.ToLower();
|
||||||
if (rkProp == "byte") return eByteProperty;
|
if (Prop == "bool") return eBoolProperty;
|
||||||
if (rkProp == "short") return eShortProperty;
|
if (Prop == "byte") return eByteProperty;
|
||||||
if (rkProp == "long") return eLongProperty;
|
if (Prop == "short") return eShortProperty;
|
||||||
if (rkProp == "enum") return eEnumProperty;
|
if (Prop == "long") return eLongProperty;
|
||||||
if (rkProp == "bitfield") return eBitfieldProperty;
|
if (Prop == "enum") return eEnumProperty;
|
||||||
if (rkProp == "float") return eFloatProperty;
|
if (Prop == "bitfield") return eBitfieldProperty;
|
||||||
if (rkProp == "string") return eStringProperty;
|
if (Prop == "float") return eFloatProperty;
|
||||||
if (rkProp == "color") return eColorProperty;
|
if (Prop == "string") return eStringProperty;
|
||||||
if (rkProp == "vector3f") return eVector3Property;
|
if (Prop == "color") return eColorProperty;
|
||||||
if (rkProp == "file") return eFileProperty;
|
if (Prop == "vector3f") return eVector3Property;
|
||||||
if (rkProp == "struct") return eStructProperty;
|
if (Prop == "file") return eFileProperty;
|
||||||
if (rkProp == "array") return eArrayProperty;
|
if (Prop == "struct") return eStructProperty;
|
||||||
if (rkProp == "character") return eCharacterProperty;
|
if (Prop == "array") return eArrayProperty;
|
||||||
if (rkProp == "unknown") return eUnknownProperty;
|
if (Prop == "character") return eCharacterProperty;
|
||||||
|
if (Prop == "mayaspline") return eMayaSplineProperty;
|
||||||
|
if (Prop == "unknown") return eUnknownProperty;
|
||||||
return eInvalidProperty;
|
return eInvalidProperty;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -310,7 +310,43 @@ typedef TNumericalPropertyTemplate<float, eFloatProperty, CFloatValue>
|
||||||
typedef TTypedPropertyTemplate<TString, eStringProperty, CStringValue, false> TStringTemplate;
|
typedef TTypedPropertyTemplate<TString, eStringProperty, CStringValue, false> TStringTemplate;
|
||||||
typedef TTypedPropertyTemplate<CVector3f, eVector3Property, CVector3Value, true> TVector3Template;
|
typedef TTypedPropertyTemplate<CVector3f, eVector3Property, CVector3Value, true> TVector3Template;
|
||||||
typedef TTypedPropertyTemplate<CColor, eColorProperty, CColorValue, true> TColorTemplate;
|
typedef TTypedPropertyTemplate<CColor, eColorProperty, CColorValue, true> TColorTemplate;
|
||||||
typedef TTypedPropertyTemplate<CAnimationParameters, eCharacterProperty, CCharacterValue, false> TCharacterTemplate;
|
|
||||||
|
// TCharacterTemplate and TMayaSplineTemplate - quick subclasses in order to reimplement InstantiateProperty
|
||||||
|
class TCharacterTemplate : public TTypedPropertyTemplate<CAnimationParameters, eCharacterProperty, CCharacterValue, false>
|
||||||
|
{
|
||||||
|
friend class CTemplateLoader;
|
||||||
|
friend class CTemplateWriter;
|
||||||
|
|
||||||
|
public:
|
||||||
|
TCharacterTemplate(u32 ID, CScriptTemplate *pScript, CMasterTemplate *pMaster, CStructTemplate *pParent = 0)
|
||||||
|
: TTypedPropertyTemplate(ID, pScript, pMaster, pParent) {}
|
||||||
|
|
||||||
|
TCharacterTemplate(u32 ID, const TString& rkName, ECookPreference CookPreference, CScriptTemplate *pScript, CMasterTemplate *pMaster, CStructTemplate *pParent = 0)
|
||||||
|
: TTypedPropertyTemplate(ID, rkName, CookPreference, pScript, pMaster, pParent) {}
|
||||||
|
|
||||||
|
IProperty* InstantiateProperty(CPropertyStruct *pParent)
|
||||||
|
{
|
||||||
|
return new TCharacterProperty(this, pParent);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
class TMayaSplineTemplate : public TTypedPropertyTemplate<std::vector<u8>, eMayaSplineProperty, CMayaSplineValue, false>
|
||||||
|
{
|
||||||
|
friend class CTemplateLoader;
|
||||||
|
friend class CTemplateWriter;
|
||||||
|
|
||||||
|
public:
|
||||||
|
TMayaSplineTemplate(u32 ID, CScriptTemplate *pScript, CMasterTemplate *pMaster, CStructTemplate *pParent = 0)
|
||||||
|
: TTypedPropertyTemplate(ID, pScript, pMaster, pParent) {}
|
||||||
|
|
||||||
|
TMayaSplineTemplate(u32 ID, const TString& rkName, ECookPreference CookPreference, CScriptTemplate *pScript, CMasterTemplate *pMaster, CStructTemplate *pParent = 0)
|
||||||
|
: TTypedPropertyTemplate(ID, rkName, CookPreference, pScript, pMaster, pParent) {}
|
||||||
|
|
||||||
|
IProperty* InstantiateProperty(CPropertyStruct *pParent)
|
||||||
|
{
|
||||||
|
return new TMayaSplineProperty(this, pParent);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
// CFileTemplate - Property template for files. Tracks a list of file types that
|
// CFileTemplate - Property template for files. Tracks a list of file types that
|
||||||
// the property is allowed to accept.
|
// the property is allowed to accept.
|
||||||
|
|
|
@ -327,6 +327,21 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class CMayaSplineValue : public TTypedPropertyValue<std::vector<u8>>
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
CMayaSplineValue() {}
|
||||||
|
CMayaSplineValue(const std::vector<u8>& rkData) { mValue = rkData; }
|
||||||
|
|
||||||
|
TString ToString() const { return "[MayaSpline]"; }
|
||||||
|
void FromString(const TString&) {}
|
||||||
|
|
||||||
|
IPropertyValue* Clone() const
|
||||||
|
{
|
||||||
|
return new CMayaSplineValue(mValue);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
class CFileValue : public TTypedPropertyValue<CResourceInfo>
|
class CFileValue : public TTypedPropertyValue<CResourceInfo>
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -334,7 +349,7 @@ public:
|
||||||
CFileValue(const CResourceInfo& rkInfo) { mValue = rkInfo; }
|
CFileValue(const CResourceInfo& rkInfo) { mValue = rkInfo; }
|
||||||
|
|
||||||
TString ToString() const { return ""; }
|
TString ToString() const { return ""; }
|
||||||
void FromString(const TString&) { }
|
void FromString(const TString&) {}
|
||||||
|
|
||||||
IPropertyValue* Clone() const
|
IPropertyValue* Clone() const
|
||||||
{
|
{
|
||||||
|
|
|
@ -309,6 +309,10 @@ QVariant CPropertyModel::data(const QModelIndex& rkIndex, int Role) const
|
||||||
return QString("%1 element%2").arg(Count).arg(Count != 1 ? "s" : "");
|
return QString("%1 element%2").arg(Count).arg(Count != 1 ? "s" : "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Display "[MayaSpline]" for MayaSplines (todo: proper support)
|
||||||
|
case eMayaSplineProperty:
|
||||||
|
return "[MayaSpline]";
|
||||||
|
|
||||||
// No display text on properties with persistent editors
|
// No display text on properties with persistent editors
|
||||||
case eBoolProperty:
|
case eBoolProperty:
|
||||||
case eFileProperty:
|
case eFileProperty:
|
||||||
|
@ -342,6 +346,11 @@ QVariant CPropertyModel::data(const QModelIndex& rkIndex, int Role) const
|
||||||
// Add description
|
// Add description
|
||||||
TString Desc = pProp->Template()->Description();
|
TString Desc = pProp->Template()->Description();
|
||||||
if (!Desc.IsEmpty()) Text += "<br/>" + TO_QSTRING(Desc);
|
if (!Desc.IsEmpty()) Text += "<br/>" + TO_QSTRING(Desc);
|
||||||
|
|
||||||
|
// MayaSpline notification
|
||||||
|
if (pProp->Type() == eMayaSplineProperty)
|
||||||
|
Text += "<br/><i>(NOTE: MayaSpline properties are currently unsupported for editing)</i>";
|
||||||
|
|
||||||
return Text;
|
return Text;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2241,7 +2241,7 @@
|
||||||
<property ID="0x32CE899F" name="Unknown"/>
|
<property ID="0x32CE899F" name="Unknown"/>
|
||||||
<property ID="0x32D6D325" name="Unknown"/>
|
<property ID="0x32D6D325" name="Unknown"/>
|
||||||
<property ID="0x32DA6AA8" name="Unknown"/>
|
<property ID="0x32DA6AA8" name="Unknown"/>
|
||||||
<property ID="0x32DC67F6" name="Fade-out timer"/>
|
<property ID="0x32DC67F6" name="Fade Out Time"/>
|
||||||
<property ID="0x32DCC4F9" name="Unknown"/>
|
<property ID="0x32DCC4F9" name="Unknown"/>
|
||||||
<property ID="0x32DD1ED4" name="Unknown"/>
|
<property ID="0x32DD1ED4" name="Unknown"/>
|
||||||
<property ID="0x32F5E918" name="Unknown"/>
|
<property ID="0x32F5E918" name="Unknown"/>
|
||||||
|
@ -3899,7 +3899,7 @@
|
||||||
<property ID="0x56C0D040" name="Always 0"/>
|
<property ID="0x56C0D040" name="Always 0"/>
|
||||||
<property ID="0x56C192F3" name="Unknown"/>
|
<property ID="0x56C192F3" name="Unknown"/>
|
||||||
<property ID="0x56C48141" name="BeastRiderData"/>
|
<property ID="0x56C48141" name="BeastRiderData"/>
|
||||||
<property ID="0x56E3CEEF" name="Fade-in timer"/>
|
<property ID="0x56E3CEEF" name="Fade In Time"/>
|
||||||
<property ID="0x56EB17BB" name="Unknown"/>
|
<property ID="0x56EB17BB" name="Unknown"/>
|
||||||
<property ID="0x56F3C854" name="Unknown"/>
|
<property ID="0x56F3C854" name="Unknown"/>
|
||||||
<property ID="0x56F41CA8" name="Unknown"/>
|
<property ID="0x56F41CA8" name="Unknown"/>
|
||||||
|
@ -7982,7 +7982,7 @@
|
||||||
<property ID="0xB335DB07" name="Unknown"/>
|
<property ID="0xB335DB07" name="Unknown"/>
|
||||||
<property ID="0xB33A0CBC" name="Unknown"/>
|
<property ID="0xB33A0CBC" name="Unknown"/>
|
||||||
<property ID="0xB33EB533" name="HealthInfo"/>
|
<property ID="0xB33EB533" name="HealthInfo"/>
|
||||||
<property ID="0xB33F8CE5" name="Unknown"/>
|
<property ID="0xB33F8CE5" name="OceanBridgeData"/>
|
||||||
<property ID="0xB3408173" name="Unknown"/>
|
<property ID="0xB3408173" name="Unknown"/>
|
||||||
<property ID="0xB348C46B" name="Unknown"/>
|
<property ID="0xB348C46B" name="Unknown"/>
|
||||||
<property ID="0xB34E89AE" name="Unknown"/>
|
<property ID="0xB34E89AE" name="Unknown"/>
|
||||||
|
|
|
@ -68,7 +68,7 @@
|
||||||
<property ID="0xF8DF6CD2" type="color">
|
<property ID="0xF8DF6CD2" type="color">
|
||||||
<default>1.0, 1.0, 1.0, 1.0</default>
|
<default>1.0, 1.0, 1.0, 1.0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xC23011D9" template="Structs/MayaSpline.xml"/>
|
<property ID="0xC23011D9" type="MayaSpline"/>
|
||||||
<property ID="0xC1B9C601" type="bool">
|
<property ID="0xC1B9C601" type="bool">
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<struct ID="0xEFE4EA57" template="Structs/RotationSplines.xml"/>
|
<struct ID="0xEFE4EA57" template="Structs/RotationSplines.xml"/>
|
||||||
<struct ID="0x2F7EC0A2" template="Structs/ScaleSplines.xml"/>
|
<struct ID="0x2F7EC0A2" template="Structs/ScaleSplines.xml"/>
|
||||||
<struct ID="0x692267EA" template="Structs/TranslationSplines.xml"/>
|
<struct ID="0x692267EA" template="Structs/TranslationSplines.xml"/>
|
||||||
<struct ID="0x51B8AACA" template="Structs/MayaSpline.xml"/>
|
<property ID="0x51B8AACA" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
<states/>
|
<states/>
|
||||||
<messages/>
|
<messages/>
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
<property ID="0x1989E2E5" type="float">
|
<property ID="0x1989E2E5" type="float">
|
||||||
<default>0.5</default>
|
<default>0.5</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xFA0EED84" template="Structs/MayaSpline.xml"/>
|
<property ID="0xFA0EED84" type="MayaSpline"/>
|
||||||
<struct ID="0x91FA7B19" template="Structs/AreaPathStructA.xml"/>
|
<struct ID="0x91FA7B19" template="Structs/AreaPathStructA.xml"/>
|
||||||
<property ID="0x1B32DC50" type="file" extensions="PART"/>
|
<property ID="0x1B32DC50" type="file" extensions="PART"/>
|
||||||
<property ID="0x7C642C9C" type="file" extensions="CAUD"/>
|
<property ID="0x7C642C9C" type="file" extensions="CAUD"/>
|
||||||
|
|
|
@ -48,7 +48,7 @@
|
||||||
<property ID="0xDCB3F50E" type="float">
|
<property ID="0xDCB3F50E" type="float">
|
||||||
<default>0.5</default>
|
<default>0.5</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xBD917023" template="Structs/MayaSpline.xml"/>
|
<property ID="0xBD917023" type="MayaSpline"/>
|
||||||
<property ID="0x7C8454BD" type="float">
|
<property ID="0x7C8454BD" type="float">
|
||||||
<default>2.0</default>
|
<default>2.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -107,13 +107,13 @@
|
||||||
<default>1.0</default>
|
<default>1.0</default>
|
||||||
</property>
|
</property>
|
||||||
<property ID="0xE1E66B24" type="file" extensions="CAUD"/>
|
<property ID="0xE1E66B24" type="file" extensions="CAUD"/>
|
||||||
<struct ID="0xB413C45F" template="Structs/MayaSpline.xml"/>
|
<property ID="0xB413C45F" type="MayaSpline"/>
|
||||||
<struct ID="0x76C7464C" template="Structs/MayaSpline.xml"/>
|
<property ID="0x76C7464C" type="MayaSpline"/>
|
||||||
<struct ID="0x10E05AAF" template="Structs/MayaSpline.xml"/>
|
<property ID="0x10E05AAF" type="MayaSpline"/>
|
||||||
<property ID="0xB0C2F5F6" type="file" extensions="CAUD"/>
|
<property ID="0xB0C2F5F6" type="file" extensions="CAUD"/>
|
||||||
<struct ID="0xBD894993" template="Structs/MayaSpline.xml"/>
|
<property ID="0xBD894993" type="MayaSpline"/>
|
||||||
<struct ID="0x05291EF7" template="Structs/MayaSpline.xml"/>
|
<property ID="0x05291EF7" type="MayaSpline"/>
|
||||||
<struct ID="0x4C20DEF3" template="Structs/MayaSpline.xml"/>
|
<property ID="0x4C20DEF3" type="MayaSpline"/>
|
||||||
<property ID="0x259C0939" type="file" extensions="CAUD"/>
|
<property ID="0x259C0939" type="file" extensions="CAUD"/>
|
||||||
<property ID="0xBE5F118D" type="file" extensions="CAUD"/>
|
<property ID="0xBE5F118D" type="file" extensions="CAUD"/>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<struct ID="0x255A4580" template="Structs/EditorProperties.xml"/>
|
<struct ID="0x255A4580" template="Structs/EditorProperties.xml"/>
|
||||||
<struct ID="0x882E9F47" type="multi">
|
<struct ID="0x882E9F47" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0xDCBFA4E6" template="Structs/MayaSpline.xml"/>
|
<property ID="0xDCBFA4E6" type="MayaSpline"/>
|
||||||
<enum ID="0x1610EB13">
|
<enum ID="0x1610EB13">
|
||||||
<default>0x0B7646F3</default>
|
<default>0x0B7646F3</default>
|
||||||
<enumerators>
|
<enumerators>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<name>BloomVolume</name>
|
<name>BloomVolume</name>
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x255A4580" template="Structs/EditorProperties.xml"/>
|
<struct ID="0x255A4580" template="Structs/EditorProperties.xml"/>
|
||||||
<struct ID="0x3801A56B" template="Structs/MayaSpline.xml"/>
|
<property ID="0x3801A56B" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
<states/>
|
<states/>
|
||||||
<messages/>
|
<messages/>
|
||||||
|
|
|
@ -144,8 +144,8 @@
|
||||||
<property ID="0xCAFE3DA7" type="float">
|
<property ID="0xCAFE3DA7" type="float">
|
||||||
<default>60.0</default>
|
<default>60.0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x972C0E20" template="Structs/MayaSpline.xml"/>
|
<property ID="0x972C0E20" type="MayaSpline"/>
|
||||||
<struct ID="0x812CF888" template="Structs/MayaSpline.xml"/>
|
<property ID="0x812CF888" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
<struct ID="0xE389796E" type="multi">
|
<struct ID="0xE389796E" type="multi">
|
||||||
|
@ -168,7 +168,7 @@
|
||||||
</struct>
|
</struct>
|
||||||
<struct ID="0x62243011" type="multi">
|
<struct ID="0x62243011" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x343A18A7" template="Structs/MayaSpline.xml"/>
|
<property ID="0x343A18A7" type="MayaSpline"/>
|
||||||
<property ID="0x82AF371E" type="bool">
|
<property ID="0x82AF371E" type="bool">
|
||||||
<default>true</default>
|
<default>true</default>
|
||||||
</property>
|
</property>
|
||||||
|
@ -181,7 +181,7 @@
|
||||||
<property ID="0xACE23AC6" type="bool">
|
<property ID="0xACE23AC6" type="bool">
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x2D839E6F" template="Structs/MayaSpline.xml"/>
|
<property ID="0x2D839E6F" type="MayaSpline"/>
|
||||||
<property ID="0xF88D7EF2" type="bool">
|
<property ID="0xF88D7EF2" type="bool">
|
||||||
<default>true</default>
|
<default>true</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -30,8 +30,8 @@
|
||||||
<property ID="0x05C5FC6E" type="long">
|
<property ID="0x05C5FC6E" type="long">
|
||||||
<default>133236</default>
|
<default>133236</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x27E5F874" template="Structs/MayaSpline.xml"/>
|
<property ID="0x27E5F874" type="MayaSpline"/>
|
||||||
<struct ID="0xC4DFBFA7" template="Structs/MayaSpline.xml"/>
|
<property ID="0xC4DFBFA7" type="MayaSpline"/>
|
||||||
<struct ID="0x65FC11FF" template="Structs/CameraOrientation.xml">
|
<struct ID="0x65FC11FF" template="Structs/CameraOrientation.xml">
|
||||||
<properties>
|
<properties>
|
||||||
<enum ID="0x5C72A964">
|
<enum ID="0x5C72A964">
|
||||||
|
@ -56,9 +56,9 @@
|
||||||
</struct>
|
</struct>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
<struct ID="0x6868D4B3" template="Structs/MayaSpline.xml"/>
|
<property ID="0x6868D4B3" type="MayaSpline"/>
|
||||||
<struct ID="0x6E6D8EFD" template="Structs/MayaSpline.xml"/>
|
<property ID="0x6E6D8EFD" type="MayaSpline"/>
|
||||||
<struct ID="0xF4F4798E" template="Structs/MayaSpline.xml"/>
|
<property ID="0xF4F4798E" type="MayaSpline"/>
|
||||||
<struct ID="0x764827D4" template="Structs/CameraInterpolation.xml">
|
<struct ID="0x764827D4" template="Structs/CameraInterpolation.xml">
|
||||||
<properties>
|
<properties>
|
||||||
<property ID="0x1D49D35C">
|
<property ID="0x1D49D35C">
|
||||||
|
@ -111,8 +111,8 @@
|
||||||
</struct>
|
</struct>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
<struct ID="0x29515802" template="Structs/MayaSpline.xml"/>
|
<property ID="0x29515802" type="MayaSpline"/>
|
||||||
<struct ID="0xDF1865A6" template="Structs/MayaSpline.xml"/>
|
<property ID="0xDF1865A6" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
<states/>
|
<states/>
|
||||||
<messages/>
|
<messages/>
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
<property ID="0x9A306740" type="bool">
|
<property ID="0x9A306740" type="bool">
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x15567FE7" template="Structs/MayaSpline.xml"/>
|
<property ID="0x15567FE7" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
<states/>
|
<states/>
|
||||||
<messages/>
|
<messages/>
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<property ID="0x65470F5B" type="bool">
|
<property ID="0x65470F5B" type="bool">
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x6057938A" template="Structs/MayaSpline.xml"/>
|
<property ID="0x6057938A" type="MayaSpline"/>
|
||||||
<property ID="0x5E96989A" type="file" extensions="TXTR"/>
|
<property ID="0x5E96989A" type="file" extensions="TXTR"/>
|
||||||
<property ID="0xB883AC66" type="float">
|
<property ID="0xB883AC66" type="float">
|
||||||
<default>0.0</default>
|
<default>0.0</default>
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x72531EDE" type="multi">
|
<struct ID="0x72531EDE" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x239D0D2B" template="Structs/MayaSpline.xml"/>
|
<property ID="0x239D0D2B" type="MayaSpline"/>
|
||||||
<property ID="0xC90D8899" type="float">
|
<property ID="0xC90D8899" type="float">
|
||||||
<default>0.0</default>
|
<default>0.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
@ -66,7 +66,7 @@
|
||||||
<property ID="0x456DF20C" type="long">
|
<property ID="0x456DF20C" type="long">
|
||||||
<default>0</default>
|
<default>0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x2F7C63A3" template="Structs/MayaSpline.xml"/>
|
<property ID="0x2F7C63A3" type="MayaSpline"/>
|
||||||
<property ID="0x1F6813F1" type="float">
|
<property ID="0x1F6813F1" type="float">
|
||||||
<default>0.0</default>
|
<default>0.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
@ -77,7 +77,7 @@
|
||||||
</struct>
|
</struct>
|
||||||
<struct ID="0x9546F449" type="multi">
|
<struct ID="0x9546F449" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0xFEECA0D6" template="Structs/MayaSpline.xml"/>
|
<property ID="0xFEECA0D6" type="MayaSpline"/>
|
||||||
<property ID="0x79AA798B" type="float">
|
<property ID="0x79AA798B" type="float">
|
||||||
<default>0.0</default>
|
<default>0.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
@ -92,7 +92,7 @@
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x493D6A2D" template="Structs/SplineType.xml"/>
|
<struct ID="0x493D6A2D" template="Structs/SplineType.xml"/>
|
||||||
<struct ID="0x27E5F874" template="Structs/MayaSpline.xml"/>
|
<property ID="0x27E5F874" type="MayaSpline"/>
|
||||||
<property ID="0xFD1E2F56" type="float">
|
<property ID="0xFD1E2F56" type="float">
|
||||||
<default>10.0</default>
|
<default>10.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x493D6A2D" template="Structs/SplineType.xml"/>
|
<struct ID="0x493D6A2D" template="Structs/SplineType.xml"/>
|
||||||
<struct ID="0x27E5F874" template="Structs/MayaSpline.xml"/>
|
<property ID="0x27E5F874" type="MayaSpline"/>
|
||||||
<property ID="0xFD1E2F56" type="float">
|
<property ID="0xFD1E2F56" type="float">
|
||||||
<default>10.0</default>
|
<default>10.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -517,7 +517,7 @@
|
||||||
<property ID="0xB8D62DDF" type="float">
|
<property ID="0xB8D62DDF" type="float">
|
||||||
<default>10.0</default>
|
<default>10.0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x92708C7E" template="Structs/MayaSpline.xml"/>
|
<property ID="0x92708C7E" type="MayaSpline"/>
|
||||||
<property ID="0xB956F379" type="float">
|
<property ID="0xB956F379" type="float">
|
||||||
<default>0.25</default>
|
<default>0.25</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
<property ID="0x172ADDB3" type="float">
|
<property ID="0x172ADDB3" type="float">
|
||||||
<default>0.25</default>
|
<default>0.25</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x69DC0A16" template="Structs/MayaSpline.xml"/>
|
<property ID="0x69DC0A16" type="MayaSpline"/>
|
||||||
<property ID="0x5704897C" type="float">
|
<property ID="0x5704897C" type="float">
|
||||||
<default>1.0</default>
|
<default>1.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -112,13 +112,13 @@
|
||||||
<default>true</default>
|
<default>true</default>
|
||||||
</property>
|
</property>
|
||||||
<property ID="0x36B1ADD6" type="file" extensions="CAUD"/>
|
<property ID="0x36B1ADD6" type="file" extensions="CAUD"/>
|
||||||
<struct ID="0xEFE4798F" template="Structs/MayaSpline.xml"/>
|
<property ID="0xEFE4798F" type="MayaSpline"/>
|
||||||
<struct ID="0x96D4F78B" template="Structs/MayaSpline.xml"/>
|
<property ID="0x96D4F78B" type="MayaSpline"/>
|
||||||
<struct ID="0x15001E0D" template="Structs/MayaSpline.xml"/>
|
<property ID="0x15001E0D" type="MayaSpline"/>
|
||||||
<property ID="0xE3A63100" type="file" extensions="CAUD"/>
|
<property ID="0xE3A63100" type="file" extensions="CAUD"/>
|
||||||
<struct ID="0x3B016CFA" template="Structs/MayaSpline.xml"/>
|
<property ID="0x3B016CFA" type="MayaSpline"/>
|
||||||
<struct ID="0x00C95A55" template="Structs/MayaSpline.xml"/>
|
<property ID="0x00C95A55" type="MayaSpline"/>
|
||||||
<struct ID="0x74FDFC73" template="Structs/MayaSpline.xml"/>
|
<property ID="0x74FDFC73" type="MayaSpline"/>
|
||||||
<property ID="0xEBE660AF" type="file" extensions="CAUD"/>
|
<property ID="0xEBE660AF" type="file" extensions="CAUD"/>
|
||||||
<property ID="0x0E2B82EC" type="file" extensions="CAUD"/>
|
<property ID="0x0E2B82EC" type="file" extensions="CAUD"/>
|
||||||
<property ID="0xD7C19141" type="long">
|
<property ID="0xD7C19141" type="long">
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
<property ID="0xF8DF6CD2" type="color">
|
<property ID="0xF8DF6CD2" type="color">
|
||||||
<default>1.0, 1.0, 1.0, 1.0</default>
|
<default>1.0, 1.0, 1.0, 1.0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xC23011D9" template="Structs/MayaSpline.xml"/>
|
<property ID="0xC23011D9" type="MayaSpline"/>
|
||||||
<property ID="0x1D8DD846" type="bool">
|
<property ID="0x1D8DD846" type="bool">
|
||||||
<default>true</default>
|
<default>true</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -15,8 +15,8 @@
|
||||||
<property ID="0x246A1185" type="file" extensions="CMDL"/>
|
<property ID="0x246A1185" type="file" extensions="CMDL"/>
|
||||||
<property ID="0xEF36C220" type="file" extensions="unknown"/>
|
<property ID="0xEF36C220" type="file" extensions="unknown"/>
|
||||||
<property ID="0xF233F298" type="file" extensions="unknown"/>
|
<property ID="0xF233F298" type="file" extensions="unknown"/>
|
||||||
<struct ID="0xF7AA5F32" template="Structs/MayaSpline.xml"/>
|
<property ID="0xF7AA5F32" type="MayaSpline"/>
|
||||||
<struct ID="0xD0239F95" template="Structs/MayaSpline.xml"/>
|
<property ID="0xD0239F95" type="MayaSpline"/>
|
||||||
<property ID="0x5688683B" type="float">
|
<property ID="0x5688683B" type="float">
|
||||||
<default>-0.1</default>
|
<default>-0.1</default>
|
||||||
</property>
|
</property>
|
||||||
|
@ -190,14 +190,14 @@
|
||||||
<property ID="0x7B8E2CD2" type="file" extensions="CAUD"/>
|
<property ID="0x7B8E2CD2" type="file" extensions="CAUD"/>
|
||||||
<property ID="0x28147756" type="file" extensions="unknown"/>
|
<property ID="0x28147756" type="file" extensions="unknown"/>
|
||||||
<property ID="0x0093800D" type="file" extensions="unknown"/>
|
<property ID="0x0093800D" type="file" extensions="unknown"/>
|
||||||
<struct ID="0xCCBB7330" template="Structs/MayaSpline.xml"/>
|
<property ID="0xCCBB7330" type="MayaSpline"/>
|
||||||
<struct ID="0xAA62345F" template="Structs/MayaSpline.xml"/>
|
<property ID="0xAA62345F" type="MayaSpline"/>
|
||||||
<struct ID="0x1852AF24" template="Structs/MayaSpline.xml"/>
|
<property ID="0x1852AF24" type="MayaSpline"/>
|
||||||
<struct ID="0x0BA9A91C" template="Structs/MayaSpline.xml"/>
|
<property ID="0x0BA9A91C" type="MayaSpline"/>
|
||||||
<struct ID="0x6FCC7DD4" template="Structs/MayaSpline.xml"/>
|
<property ID="0x6FCC7DD4" type="MayaSpline"/>
|
||||||
<struct ID="0x77C88CC7" template="Structs/MayaSpline.xml"/>
|
<property ID="0x77C88CC7" type="MayaSpline"/>
|
||||||
<struct ID="0x7B066BAC" template="Structs/MayaSpline.xml"/>
|
<property ID="0x7B066BAC" type="MayaSpline"/>
|
||||||
<struct ID="0x64FADEA2" template="Structs/MayaSpline.xml"/>
|
<property ID="0x64FADEA2" type="MayaSpline"/>
|
||||||
<property ID="0x751BFE84" type="file" extensions="CAUD"/>
|
<property ID="0x751BFE84" type="file" extensions="CAUD"/>
|
||||||
<property ID="0x5EB113BF" type="file" extensions="CAUD"/>
|
<property ID="0x5EB113BF" type="file" extensions="CAUD"/>
|
||||||
<property ID="0x3DBA2F5C" type="file" extensions="CAUD"/>
|
<property ID="0x3DBA2F5C" type="file" extensions="CAUD"/>
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<struct ID="0x7E397FED" template="Structs/ActorParameters.xml"/>
|
<struct ID="0x7E397FED" template="Structs/ActorParameters.xml"/>
|
||||||
<struct ID="0x7CF4790F" type="multi">
|
<struct ID="0x7CF4790F" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x672255F7" template="Structs/MayaSpline.xml"/>
|
<property ID="0x672255F7" type="MayaSpline"/>
|
||||||
<property ID="0x3217DFF8" type="bool">
|
<property ID="0x3217DFF8" type="bool">
|
||||||
<default>true</default>
|
<default>true</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -41,11 +41,11 @@
|
||||||
<property ID="0x91B27CB3" type="float">
|
<property ID="0x91B27CB3" type="float">
|
||||||
<default>0.0</default>
|
<default>0.0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x59299E65" template="Structs/MayaSpline.xml"/>
|
<property ID="0x59299E65" type="MayaSpline"/>
|
||||||
<property ID="0xC355FB9F" type="float">
|
<property ID="0xC355FB9F" type="float">
|
||||||
<default>0.0</default>
|
<default>0.0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x3153F656" template="Structs/MayaSpline.xml"/>
|
<property ID="0x3153F656" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
|
@ -108,13 +108,13 @@
|
||||||
<default>1.0</default>
|
<default>1.0</default>
|
||||||
</property>
|
</property>
|
||||||
<property ID="0xE1E66B24" type="file" extensions="CAUD"/>
|
<property ID="0xE1E66B24" type="file" extensions="CAUD"/>
|
||||||
<struct ID="0xB413C45F" template="Structs/MayaSpline.xml"/>
|
<property ID="0xB413C45F" type="MayaSpline"/>
|
||||||
<struct ID="0x76C7464C" template="Structs/MayaSpline.xml"/>
|
<property ID="0x76C7464C" type="MayaSpline"/>
|
||||||
<struct ID="0x10E05AAF" template="Structs/MayaSpline.xml"/>
|
<property ID="0x10E05AAF" type="MayaSpline"/>
|
||||||
<property ID="0xB0C2F5F6" type="file" extensions="CAUD"/>
|
<property ID="0xB0C2F5F6" type="file" extensions="CAUD"/>
|
||||||
<struct ID="0xBD894993" template="Structs/MayaSpline.xml"/>
|
<property ID="0xBD894993" type="MayaSpline"/>
|
||||||
<struct ID="0x05291EF7" template="Structs/MayaSpline.xml"/>
|
<property ID="0x05291EF7" type="MayaSpline"/>
|
||||||
<struct ID="0x4C20DEF3" template="Structs/MayaSpline.xml"/>
|
<property ID="0x4C20DEF3" type="MayaSpline"/>
|
||||||
<property ID="0x259C0939" type="file" extensions="CAUD"/>
|
<property ID="0x259C0939" type="file" extensions="CAUD"/>
|
||||||
<property ID="0xC8B23273" type="file" extensions="CAUD"/>
|
<property ID="0xC8B23273" type="file" extensions="CAUD"/>
|
||||||
<property ID="0xBE5F118D" type="file" extensions="CAUD"/>
|
<property ID="0xBE5F118D" type="file" extensions="CAUD"/>
|
||||||
|
|
|
@ -86,13 +86,13 @@
|
||||||
<default>-16.0</default>
|
<default>-16.0</default>
|
||||||
</property>
|
</property>
|
||||||
<property ID="0xD190899C" type="file" extensions="CAUD"/>
|
<property ID="0xD190899C" type="file" extensions="CAUD"/>
|
||||||
<struct ID="0x82375435" template="Structs/MayaSpline.xml"/>
|
<property ID="0x82375435" type="MayaSpline"/>
|
||||||
<struct ID="0xB875593B" template="Structs/MayaSpline.xml"/>
|
<property ID="0xB875593B" type="MayaSpline"/>
|
||||||
<struct ID="0xDE4F0C2F" template="Structs/MayaSpline.xml"/>
|
<property ID="0xDE4F0C2F" type="MayaSpline"/>
|
||||||
<property ID="0x7548B8AA" type="file" extensions="CAUD"/>
|
<property ID="0x7548B8AA" type="file" extensions="CAUD"/>
|
||||||
<struct ID="0x10D8E545" template="Structs/MayaSpline.xml"/>
|
<property ID="0x10D8E545" type="MayaSpline"/>
|
||||||
<struct ID="0xCB864877" template="Structs/MayaSpline.xml"/>
|
<property ID="0xCB864877" type="MayaSpline"/>
|
||||||
<struct ID="0xA156F285" template="Structs/MayaSpline.xml"/>
|
<property ID="0xA156F285" type="MayaSpline"/>
|
||||||
<property ID="0x3684450B" type="float">
|
<property ID="0x3684450B" type="float">
|
||||||
<default>0.66</default>
|
<default>0.66</default>
|
||||||
</property>
|
</property>
|
||||||
|
@ -127,9 +127,9 @@
|
||||||
<struct ID="0xFE6F6D0F" type="multi">
|
<struct ID="0xFE6F6D0F" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<property ID="0xA55DACF6" type="file" extensions="CAUD"/>
|
<property ID="0xA55DACF6" type="file" extensions="CAUD"/>
|
||||||
<struct ID="0x8A939379" template="Structs/MayaSpline.xml"/>
|
<property ID="0x8A939379" type="MayaSpline"/>
|
||||||
<struct ID="0x0E727FC4" template="Structs/MayaSpline.xml"/>
|
<property ID="0x0E727FC4" type="MayaSpline"/>
|
||||||
<struct ID="0xF3FBE484" template="Structs/MayaSpline.xml"/>
|
<property ID="0xF3FBE484" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
<enumerator ID="0xA0E5443D" name="Unknown 26"/>
|
<enumerator ID="0xA0E5443D" name="Unknown 26"/>
|
||||||
</enumerators>
|
</enumerators>
|
||||||
</enum>
|
</enum>
|
||||||
<struct ID="0x05A451ED" template="Structs/MayaSpline.xml"/>
|
<property ID="0x05A451ED" type="MayaSpline"/>
|
||||||
<property ID="0x78C507EB" type="float">
|
<property ID="0x78C507EB" type="float">
|
||||||
<default>20.0</default>
|
<default>20.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<property ID="0x37C7D09D" type="color">
|
<property ID="0x37C7D09D" type="color">
|
||||||
<default>1.0, 1.0, 1.0, 0.0</default>
|
<default>1.0, 1.0, 1.0, 0.0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x922D151F" template="Structs/MayaSpline.xml"/>
|
<property ID="0x922D151F" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
<states/>
|
<states/>
|
||||||
<messages/>
|
<messages/>
|
||||||
|
|
|
@ -24,11 +24,11 @@
|
||||||
<property ID="0x562D6122" type="bool">
|
<property ID="0x562D6122" type="bool">
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xF3FBE484" template="Structs/MayaSpline.xml"/>
|
<property ID="0xF3FBE484" type="MayaSpline"/>
|
||||||
<struct ID="0x2858C9F0" template="Structs/MayaSpline.xml"/>
|
<property ID="0x2858C9F0" type="MayaSpline"/>
|
||||||
<struct ID="0x5113198F" template="Structs/MayaSpline.xml"/>
|
<property ID="0x5113198F" type="MayaSpline"/>
|
||||||
<struct ID="0x0E727FC4" template="Structs/MayaSpline.xml"/>
|
<property ID="0x0E727FC4" type="MayaSpline"/>
|
||||||
<struct ID="0xD3049E04" template="Structs/MayaSpline.xml"/>
|
<property ID="0xD3049E04" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
<states/>
|
<states/>
|
||||||
<messages/>
|
<messages/>
|
||||||
|
|
|
@ -83,9 +83,9 @@
|
||||||
<property ID="0x0AC56FC9" type="float">
|
<property ID="0x0AC56FC9" type="float">
|
||||||
<default>0.5</default>
|
<default>0.5</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xF27C01EE" template="Structs/MayaSpline.xml"/>
|
<property ID="0xF27C01EE" type="MayaSpline"/>
|
||||||
<struct ID="0xCFE42324" template="Structs/MayaSpline.xml"/>
|
<property ID="0xCFE42324" type="MayaSpline"/>
|
||||||
<struct ID="0x533090A0" template="Structs/MayaSpline.xml"/>
|
<property ID="0x533090A0" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<name>SplineModifierVolume</name>
|
<name>SplineModifierVolume</name>
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x255A4580" template="Structs/EditorProperties.xml"/>
|
<struct ID="0x255A4580" template="Structs/EditorProperties.xml"/>
|
||||||
<struct ID="0x7AF6F162" template="Structs/MayaSpline.xml"/>
|
<property ID="0x7AF6F162" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
<states/>
|
<states/>
|
||||||
<messages/>
|
<messages/>
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
<enumerator ID="0x64D982C6" name="Unknown 5"/>
|
<enumerator ID="0x64D982C6" name="Unknown 5"/>
|
||||||
</enumerators>
|
</enumerators>
|
||||||
</enum>
|
</enum>
|
||||||
<struct ID="0x922D151F" template="Structs/MayaSpline.xml"/>
|
<property ID="0x922D151F" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
<states/>
|
<states/>
|
||||||
<messages/>
|
<messages/>
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
<property ID="0x09EE1B0B" type="bool">
|
<property ID="0x09EE1B0B" type="bool">
|
||||||
<default>true</default>
|
<default>true</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x77C8CC96" template="Structs/MayaSpline.xml"/>
|
<property ID="0x77C8CC96" type="MayaSpline"/>
|
||||||
<property ID="0x723A15A5" type="float">
|
<property ID="0x723A15A5" type="float">
|
||||||
<default>0.25</default>
|
<default>0.25</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
<struct ID="0xA1C6D9DE" template="Structs/UnknownStruct18.xml"/>
|
<struct ID="0xA1C6D9DE" template="Structs/UnknownStruct18.xml"/>
|
||||||
<struct ID="0x0D3A1C85" type="multi">
|
<struct ID="0x0D3A1C85" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x2A8FD6D0" template="Structs/MayaSpline.xml"/>
|
<property ID="0x2A8FD6D0" type="MayaSpline"/>
|
||||||
<property ID="0x95EE9687" type="float">
|
<property ID="0x95EE9687" type="float">
|
||||||
<default>5.0</default>
|
<default>5.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -98,13 +98,13 @@
|
||||||
<default>1.0</default>
|
<default>1.0</default>
|
||||||
</property>
|
</property>
|
||||||
<property ID="0xD190899C" type="file" extensions="CAUD"/>
|
<property ID="0xD190899C" type="file" extensions="CAUD"/>
|
||||||
<struct ID="0x82375435" template="Structs/MayaSpline.xml"/>
|
<property ID="0x82375435" type="MayaSpline"/>
|
||||||
<struct ID="0xB875593B" template="Structs/MayaSpline.xml"/>
|
<property ID="0xB875593B" type="MayaSpline"/>
|
||||||
<struct ID="0xDE4F0C2F" template="Structs/MayaSpline.xml"/>
|
<property ID="0xDE4F0C2F" type="MayaSpline"/>
|
||||||
<property ID="0x7548B8AA" type="file" extensions="CAUD"/>
|
<property ID="0x7548B8AA" type="file" extensions="CAUD"/>
|
||||||
<struct ID="0x10D8E545" template="Structs/MayaSpline.xml"/>
|
<property ID="0x10D8E545" type="MayaSpline"/>
|
||||||
<struct ID="0xCB864877" template="Structs/MayaSpline.xml"/>
|
<property ID="0xCB864877" type="MayaSpline"/>
|
||||||
<struct ID="0xA156F285" template="Structs/MayaSpline.xml"/>
|
<property ID="0xA156F285" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
|
@ -66,12 +66,12 @@
|
||||||
<property ID="0x08FF3B44" type="bool">
|
<property ID="0x08FF3B44" type="bool">
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x485B0C11" template="Structs/MayaSpline.xml"/>
|
<property ID="0x485B0C11" type="MayaSpline"/>
|
||||||
<struct ID="0x95CDD594" template="Structs/MayaSpline.xml"/>
|
<property ID="0x95CDD594" type="MayaSpline"/>
|
||||||
<struct ID="0x2807B95A" template="Structs/MayaSpline.xml"/>
|
<property ID="0x2807B95A" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
<struct ID="0xC4DFBFA7" template="Structs/MayaSpline.xml"/>
|
<property ID="0xC4DFBFA7" type="MayaSpline"/>
|
||||||
<struct ID="0x0E1F2094" template="Structs/UnknownStruct13.xml"/>
|
<struct ID="0x0E1F2094" template="Structs/UnknownStruct13.xml"/>
|
||||||
<struct ID="0x86BC03D3" type="multi">
|
<struct ID="0x86BC03D3" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
|
|
|
@ -38,8 +38,8 @@
|
||||||
<default>3.0</default>
|
<default>3.0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x959108A5" template="Structs/Convergence.xml"/>
|
<struct ID="0x959108A5" template="Structs/Convergence.xml"/>
|
||||||
<struct ID="0x27E5F874" template="Structs/MayaSpline.xml"/>
|
<property ID="0x27E5F874" type="MayaSpline"/>
|
||||||
<struct ID="0x12861F7D" template="Structs/MayaSpline.xml"/>
|
<property ID="0x12861F7D" type="MayaSpline"/>
|
||||||
<struct ID="0x0E1F2094" template="Structs/UnknownStruct13.xml"/>
|
<struct ID="0x0E1F2094" template="Structs/UnknownStruct13.xml"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
|
@ -103,7 +103,7 @@
|
||||||
</enum>
|
</enum>
|
||||||
<struct ID="0xB02AAA53" type="multi">
|
<struct ID="0xB02AAA53" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x6F7368E0" template="Structs/MayaSpline.xml"/>
|
<property ID="0x6F7368E0" type="MayaSpline"/>
|
||||||
<property ID="0xD21C62FF" type="bool">
|
<property ID="0xD21C62FF" type="bool">
|
||||||
<default>true</default>
|
<default>true</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<enumerator ID="0x6C5BEF22" name="Unknown 2"/>
|
<enumerator ID="0x6C5BEF22" name="Unknown 2"/>
|
||||||
</enumerators>
|
</enumerators>
|
||||||
</enum>
|
</enum>
|
||||||
<struct ID="0x90B3CC7E" template="Structs/MayaSpline.xml"/>
|
<property ID="0x90B3CC7E" type="MayaSpline"/>
|
||||||
<struct ID="0x69A81517" template="Structs/MayaSpline.xml"/>
|
<property ID="0x69A81517" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
|
|
|
@ -74,7 +74,7 @@
|
||||||
<property ID="0x02F01683" type="float">
|
<property ID="0x02F01683" type="float">
|
||||||
<default>0.0</default>
|
<default>0.0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xF7FBA2BF" template="Structs/MayaSpline.xml"/>
|
<property ID="0xF7FBA2BF" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
<struct name="ForestBossStructA" type="multi">
|
<struct name="ForestBossStructA" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<property ID="0xA55DACF6" type="file" extensions="CAUD"/>
|
<property ID="0xA55DACF6" type="file" extensions="CAUD"/>
|
||||||
<struct ID="0x8A939379" template="Structs/MayaSpline.xml"/>
|
<property ID="0x8A939379" type="MayaSpline"/>
|
||||||
<struct ID="0x0E727FC4" template="Structs/MayaSpline.xml"/>
|
<property ID="0x0E727FC4" type="MayaSpline"/>
|
||||||
<struct ID="0xF3FBE484" template="Structs/MayaSpline.xml"/>
|
<property ID="0xF3FBE484" type="MayaSpline"/>
|
||||||
<property ID="0xE2973405" type="float">
|
<property ID="0xE2973405" type="float">
|
||||||
<default>15.0</default>
|
<default>15.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -337,8 +337,8 @@
|
||||||
<property ID="0x6CF5915A" type="file" extensions="CAUD"/>
|
<property ID="0x6CF5915A" type="file" extensions="CAUD"/>
|
||||||
<property ID="0x57184EE6" type="file" extensions="CAUD"/>
|
<property ID="0x57184EE6" type="file" extensions="CAUD"/>
|
||||||
<property ID="0xB58B514E" type="file" extensions="CAUD"/>
|
<property ID="0xB58B514E" type="file" extensions="CAUD"/>
|
||||||
<struct ID="0x96C063E5" template="Structs/MayaSpline.xml"/>
|
<property ID="0x96C063E5" type="MayaSpline"/>
|
||||||
<struct ID="0xBF0A46C6" template="Structs/MayaSpline.xml"/>
|
<property ID="0xBF0A46C6" type="MayaSpline"/>
|
||||||
<property ID="0xF688A042" type="vector3f">
|
<property ID="0xF688A042" type="vector3f">
|
||||||
<default>0.0, 0.0, 0.0</default>
|
<default>0.0, 0.0, 0.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
@ -1291,9 +1291,9 @@
|
||||||
<default>0.0</default>
|
<default>0.0</default>
|
||||||
</property>
|
</property>
|
||||||
<property ID="0xE1E66B24" type="file" extensions="CAUD"/>
|
<property ID="0xE1E66B24" type="file" extensions="CAUD"/>
|
||||||
<struct ID="0xB413C45F" template="Structs/MayaSpline.xml"/>
|
<property ID="0xB413C45F" type="MayaSpline"/>
|
||||||
<struct ID="0x76C7464C" template="Structs/MayaSpline.xml"/>
|
<property ID="0x76C7464C" type="MayaSpline"/>
|
||||||
<struct ID="0x10E05AAF" template="Structs/MayaSpline.xml"/>
|
<property ID="0x10E05AAF" type="MayaSpline"/>
|
||||||
<property ID="0xBDA0B3F2" type="float">
|
<property ID="0xBDA0B3F2" type="float">
|
||||||
<default>0.0</default>
|
<default>0.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
<enumerator ID="0x9AF51C89" name="Unknown 8"/>
|
<enumerator ID="0x9AF51C89" name="Unknown 8"/>
|
||||||
</enumerators>
|
</enumerators>
|
||||||
</enum>
|
</enum>
|
||||||
<struct ID="0x15567FE7" template="Structs/MayaSpline.xml"/>
|
<property ID="0x15567FE7" type="MayaSpline"/>
|
||||||
<property ID="0xB08D3237" type="float">
|
<property ID="0xB08D3237" type="float">
|
||||||
<default>0.25</default>
|
<default>0.25</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -3,13 +3,13 @@
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0xD72E09E1" template="Structs/ClingPathControlStruct.xml"/>
|
<struct ID="0xD72E09E1" template="Structs/ClingPathControlStruct.xml"/>
|
||||||
<property ID="0x36B1ADD6" type="file" extensions="CAUD"/>
|
<property ID="0x36B1ADD6" type="file" extensions="CAUD"/>
|
||||||
<struct ID="0xEFE4798F" template="Structs/MayaSpline.xml"/>
|
<property ID="0xEFE4798F" type="MayaSpline"/>
|
||||||
<struct ID="0x96D4F78B" template="Structs/MayaSpline.xml"/>
|
<property ID="0x96D4F78B" type="MayaSpline"/>
|
||||||
<struct ID="0x15001E0D" template="Structs/MayaSpline.xml"/>
|
<property ID="0x15001E0D" type="MayaSpline"/>
|
||||||
<property ID="0xE3A63100" type="file" extensions="CAUD"/>
|
<property ID="0xE3A63100" type="file" extensions="CAUD"/>
|
||||||
<struct ID="0x3B016CFA" template="Structs/MayaSpline.xml"/>
|
<property ID="0x3B016CFA" type="MayaSpline"/>
|
||||||
<struct ID="0x00C95A55" template="Structs/MayaSpline.xml"/>
|
<property ID="0x00C95A55" type="MayaSpline"/>
|
||||||
<struct ID="0x74FDFC73" template="Structs/MayaSpline.xml"/>
|
<property ID="0x74FDFC73" type="MayaSpline"/>
|
||||||
<property ID="0xEBE660AF" type="file" extensions="CAUD"/>
|
<property ID="0xEBE660AF" type="file" extensions="CAUD"/>
|
||||||
<property ID="0x0E2B82EC" type="file" extensions="CAUD"/>
|
<property ID="0x0E2B82EC" type="file" extensions="CAUD"/>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<struct name="MinecartStructD" type="multi">
|
<struct name="MinecartStructD" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x32152AB2" template="Structs/MayaSpline.xml"/>
|
<property ID="0x32152AB2" type="MayaSpline"/>
|
||||||
<struct ID="0x005E3BE9" template="Structs/UnknownStruct41.xml"/>
|
<struct ID="0x005E3BE9" template="Structs/UnknownStruct41.xml"/>
|
||||||
<struct ID="0x44FF1EF1" template="Structs/UnknownStruct41.xml"/>
|
<struct ID="0x44FF1EF1" template="Structs/UnknownStruct41.xml"/>
|
||||||
<struct ID="0x7384AEA3" type="multi">
|
<struct ID="0x7384AEA3" type="multi">
|
||||||
|
|
|
@ -18,8 +18,8 @@
|
||||||
<default>0.5</default>
|
<default>0.5</default>
|
||||||
</property>
|
</property>
|
||||||
<property ID="0xA55DACF6" type="file" extensions="CAUD"/>
|
<property ID="0xA55DACF6" type="file" extensions="CAUD"/>
|
||||||
<struct ID="0x8A939379" template="Structs/MayaSpline.xml"/>
|
<property ID="0x8A939379" type="MayaSpline"/>
|
||||||
<struct ID="0x0E727FC4" template="Structs/MayaSpline.xml"/>
|
<property ID="0x0E727FC4" type="MayaSpline"/>
|
||||||
<struct ID="0xF3FBE484" template="Structs/MayaSpline.xml"/>
|
<property ID="0xF3FBE484" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<struct name="OffsetInterpolant" type="multi">
|
<struct name="OffsetInterpolant" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x485B0C11" template="Structs/MayaSpline.xml"/>
|
<property ID="0x485B0C11" type="MayaSpline"/>
|
||||||
<struct ID="0x95CDD594" template="Structs/MayaSpline.xml"/>
|
<property ID="0x95CDD594" type="MayaSpline"/>
|
||||||
<struct ID="0x2807B95A" template="Structs/MayaSpline.xml"/>
|
<property ID="0x2807B95A" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<struct name="PlatformMotionProperties" type="multi">
|
<struct name="PlatformMotionProperties" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x493D6A2D" template="Structs/SplineType.xml"/>
|
<struct ID="0x493D6A2D" template="Structs/SplineType.xml"/>
|
||||||
<struct ID="0x27E5F874" template="Structs/MayaSpline.xml"/>
|
<property ID="0x27E5F874" type="MayaSpline"/>
|
||||||
<property ID="0xFD1E2F56" type="float">
|
<property ID="0xFD1E2F56" type="float">
|
||||||
<default>10.0</default>
|
<default>10.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
@ -15,9 +15,9 @@
|
||||||
<property ID="0xAE80628F" type="long">
|
<property ID="0xAE80628F" type="long">
|
||||||
<default>262432</default>
|
<default>262432</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x628BDF0F" template="Structs/MayaSpline.xml"/>
|
<property ID="0x628BDF0F" type="MayaSpline"/>
|
||||||
<struct ID="0x78D03A32" template="Structs/MayaSpline.xml"/>
|
<property ID="0x78D03A32" type="MayaSpline"/>
|
||||||
<struct ID="0xB4A2E15A" template="Structs/MayaSpline.xml"/>
|
<property ID="0xB4A2E15A" type="MayaSpline"/>
|
||||||
<property ID="0xB5BFAB00" type="vector3f">
|
<property ID="0xB5BFAB00" type="vector3f">
|
||||||
<default>0.0, 0.0, 0.0</default>
|
<default>0.0, 0.0, 0.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -76,9 +76,9 @@
|
||||||
</struct>
|
</struct>
|
||||||
<struct ID="0x59C61E48" type="multi">
|
<struct ID="0x59C61E48" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x97F6EA79" template="Structs/MayaSpline.xml"/>
|
<property ID="0x97F6EA79" type="MayaSpline"/>
|
||||||
<struct ID="0x4A6033FC" template="Structs/MayaSpline.xml"/>
|
<property ID="0x4A6033FC" type="MayaSpline"/>
|
||||||
<struct ID="0xF7AA5F32" template="Structs/MayaSpline.xml"/>
|
<property ID="0xF7AA5F32" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
<struct ID="0x8698751F" type="multi">
|
<struct ID="0x8698751F" type="multi">
|
||||||
|
@ -97,8 +97,8 @@
|
||||||
<property ID="0x7A0D286C" type="float">
|
<property ID="0x7A0D286C" type="float">
|
||||||
<default>3.0</default>
|
<default>3.0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xF122CD97" template="Structs/MayaSpline.xml"/>
|
<property ID="0xF122CD97" type="MayaSpline"/>
|
||||||
<struct ID="0x2927E544" template="Structs/MayaSpline.xml"/>
|
<property ID="0x2927E544" type="MayaSpline"/>
|
||||||
<property ID="0x0364F0B8" type="bool">
|
<property ID="0x0364F0B8" type="bool">
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
</property>
|
</property>
|
||||||
|
@ -107,7 +107,7 @@
|
||||||
<struct ID="0xFE9257CE" type="multi">
|
<struct ID="0xFE9257CE" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x20091B54" template="Structs/SplineType.xml"/>
|
<struct ID="0x20091B54" template="Structs/SplineType.xml"/>
|
||||||
<struct ID="0x13EB5A7D" template="Structs/MayaSpline.xml"/>
|
<property ID="0x13EB5A7D" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
<struct ID="0x608E1757" type="multi">
|
<struct ID="0x608E1757" type="multi">
|
||||||
|
@ -122,7 +122,7 @@
|
||||||
<property ID="0xE34DC703" type="float">
|
<property ID="0xE34DC703" type="float">
|
||||||
<default>90.0</default>
|
<default>90.0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x13EB5A7D" template="Structs/MayaSpline.xml"/>
|
<property ID="0x13EB5A7D" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<struct name="RotationSplines" type="multi">
|
<struct name="RotationSplines" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x69D8447D" template="Structs/MayaSpline.xml"/>
|
<property ID="0x69D8447D" type="MayaSpline"/>
|
||||||
<struct ID="0xD0239F95" template="Structs/MayaSpline.xml"/>
|
<property ID="0xD0239F95" type="MayaSpline"/>
|
||||||
<struct ID="0xC15EF5EC" template="Structs/MayaSpline.xml"/>
|
<property ID="0xC15EF5EC" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<struct name="ScaleSplines" type="multi">
|
<struct name="ScaleSplines" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0xF437A62F" template="Structs/MayaSpline.xml"/>
|
<property ID="0xF437A62F" type="MayaSpline"/>
|
||||||
<struct ID="0x6F92EA40" template="Structs/MayaSpline.xml"/>
|
<property ID="0x6F92EA40" type="MayaSpline"/>
|
||||||
<struct ID="0x180C38B0" template="Structs/MayaSpline.xml"/>
|
<property ID="0x180C38B0" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
|
|
|
@ -17,6 +17,6 @@
|
||||||
<enumerator ID="0x0223A416" name="Unknown 11"/>
|
<enumerator ID="0x0223A416" name="Unknown 11"/>
|
||||||
</enumerators>
|
</enumerators>
|
||||||
</enum>
|
</enum>
|
||||||
<struct ID="0x9A598FA5" template="Structs/MayaSpline.xml"/>
|
<property ID="0x9A598FA5" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<struct name="TranslationSplines" type="multi">
|
<struct name="TranslationSplines" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x24E9A09B" template="Structs/MayaSpline.xml"/>
|
<property ID="0x24E9A09B" type="MayaSpline"/>
|
||||||
<struct ID="0xCBBB167A" template="Structs/MayaSpline.xml"/>
|
<property ID="0xCBBB167A" type="MayaSpline"/>
|
||||||
<struct ID="0x213DCB18" template="Structs/MayaSpline.xml"/>
|
<property ID="0x213DCB18" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
<property ID="0x46CC1B48" type="bool">
|
<property ID="0x46CC1B48" type="bool">
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xFA873A67" template="Structs/MayaSpline.xml"/>
|
<property ID="0xFA873A67" type="MayaSpline"/>
|
||||||
<struct ID="0x337F9524" template="Structs/DamageInfo.xml"/>
|
<struct ID="0x337F9524" template="Structs/DamageInfo.xml"/>
|
||||||
<property ID="0x20927E9B" type="vector3f">
|
<property ID="0x20927E9B" type="vector3f">
|
||||||
<default>0.0, 0.0, 0.0</default>
|
<default>0.0, 0.0, 0.0</default>
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
<enumerator ID="0xC4C8AE38" name="Unknown 3"/>
|
<enumerator ID="0xC4C8AE38" name="Unknown 3"/>
|
||||||
</enumerators>
|
</enumerators>
|
||||||
</enum>
|
</enum>
|
||||||
<struct ID="0x19028BD3" template="Structs/MayaSpline.xml"/>
|
<property ID="0x19028BD3" type="MayaSpline"/>
|
||||||
<property ID="0xF9FB16A2" type="bool">
|
<property ID="0xF9FB16A2" type="bool">
|
||||||
<default>true</default>
|
<default>true</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<struct name="UnknownStruct32" type="multi">
|
<struct name="UnknownStruct32" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x493D6A2D" template="Structs/SplineType.xml"/>
|
<struct ID="0x493D6A2D" template="Structs/SplineType.xml"/>
|
||||||
<struct ID="0x27E5F874" template="Structs/MayaSpline.xml"/>
|
<property ID="0x27E5F874" type="MayaSpline"/>
|
||||||
<property ID="0xFD1E2F56" type="float">
|
<property ID="0xFD1E2F56" type="float">
|
||||||
<default>10.0</default>
|
<default>10.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -48,19 +48,19 @@
|
||||||
<property ID="0xBE0F5BAB" type="float">
|
<property ID="0xBE0F5BAB" type="float">
|
||||||
<default>0.0</default>
|
<default>0.0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xAEA70DD9" template="Structs/MayaSpline.xml"/>
|
<property ID="0xAEA70DD9" type="MayaSpline"/>
|
||||||
<property ID="0x8ABC25F2" type="float">
|
<property ID="0x8ABC25F2" type="float">
|
||||||
<default>0.0</default>
|
<default>0.0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x59299E65" template="Structs/MayaSpline.xml"/>
|
<property ID="0x59299E65" type="MayaSpline"/>
|
||||||
<property ID="0xD54A5BD8" type="file" extensions="CAUD"/>
|
<property ID="0xD54A5BD8" type="file" extensions="CAUD"/>
|
||||||
<property ID="0x4B4818EE" type="file" extensions="CAUD"/>
|
<property ID="0x4B4818EE" type="file" extensions="CAUD"/>
|
||||||
<property ID="0x4A9B4299" type="file" extensions="CAUD"/>
|
<property ID="0x4A9B4299" type="file" extensions="CAUD"/>
|
||||||
<property ID="0x2E2C202D" type="float">
|
<property ID="0x2E2C202D" type="float">
|
||||||
<default>0.5</default>
|
<default>0.5</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x15CC25FD" template="Structs/MayaSpline.xml"/>
|
<property ID="0x15CC25FD" type="MayaSpline"/>
|
||||||
<struct ID="0x9169CC59" template="Structs/MayaSpline.xml"/>
|
<property ID="0x9169CC59" type="MayaSpline"/>
|
||||||
<struct ID="0x7DDA10CE" template="Structs/MayaSpline.xml"/>
|
<property ID="0x7DDA10CE" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
|
|
|
@ -4,6 +4,6 @@
|
||||||
<property ID="0x39E3604C" type="long">
|
<property ID="0x39E3604C" type="long">
|
||||||
<default>10</default>
|
<default>10</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xFE8F0886" template="Structs/MayaSpline.xml"/>
|
<property ID="0xFE8F0886" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
|
|
|
@ -198,9 +198,9 @@
|
||||||
<property ID="0x29A73264" type="float">
|
<property ID="0x29A73264" type="float">
|
||||||
<default>50.0</default>
|
<default>50.0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x6BD22C75" template="Structs/MayaSpline.xml"/>
|
<property ID="0x6BD22C75" type="MayaSpline"/>
|
||||||
<struct ID="0xB0B17D58" template="Structs/MayaSpline.xml"/>
|
<property ID="0xB0B17D58" type="MayaSpline"/>
|
||||||
<struct ID="0xC47FE8AA" template="Structs/MayaSpline.xml"/>
|
<property ID="0xC47FE8AA" type="MayaSpline"/>
|
||||||
<property ID="0xA8AC80DD" type="float">
|
<property ID="0xA8AC80DD" type="float">
|
||||||
<default>10.0</default>
|
<default>10.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
@ -419,9 +419,9 @@
|
||||||
<property ID="0xBA30AACA" type="float">
|
<property ID="0xBA30AACA" type="float">
|
||||||
<default>0.5</default>
|
<default>0.5</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xD9CA50C2" template="Structs/MayaSpline.xml"/>
|
<property ID="0xD9CA50C2" type="MayaSpline"/>
|
||||||
<struct ID="0x84951EC7" template="Structs/MayaSpline.xml"/>
|
<property ID="0x84951EC7" type="MayaSpline"/>
|
||||||
<struct ID="0x6A78525F" template="Structs/MayaSpline.xml"/>
|
<property ID="0x6A78525F" type="MayaSpline"/>
|
||||||
<property ID="0xD7C19141" type="long">
|
<property ID="0xD7C19141" type="long">
|
||||||
<default>0</default>
|
<default>0</default>
|
||||||
</property>
|
</property>
|
||||||
|
@ -456,9 +456,9 @@
|
||||||
<property ID="0x5121648E" type="file" extensions="PART"/>
|
<property ID="0x5121648E" type="file" extensions="PART"/>
|
||||||
<property ID="0xC9D72254" type="string"/>
|
<property ID="0xC9D72254" type="string"/>
|
||||||
<property ID="0xA2ACF0FA" type="file" extensions="CAUD"/>
|
<property ID="0xA2ACF0FA" type="file" extensions="CAUD"/>
|
||||||
<struct ID="0xBDAAA9B1" template="Structs/MayaSpline.xml"/>
|
<property ID="0xBDAAA9B1" type="MayaSpline"/>
|
||||||
<struct ID="0x7E50A6D2" template="Structs/MayaSpline.xml"/>
|
<property ID="0x7E50A6D2" type="MayaSpline"/>
|
||||||
<struct ID="0x075F730C" template="Structs/MayaSpline.xml"/>
|
<property ID="0x075F730C" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
<struct ID="0x75586C2B" type="multi">
|
<struct ID="0x75586C2B" type="multi">
|
||||||
|
|
|
@ -1,38 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<enum name="SpecialFunctionType">
|
|
||||||
<enumerators>
|
|
||||||
<enumerator ID="0x00" name="What"/>
|
|
||||||
<enumerator ID="0x01" name="Player Follow Locator"/>
|
|
||||||
<enumerator ID="0x02" name="Spinner Controller"/>
|
|
||||||
<enumerator ID="0x03" name="Object Follow Locator"/>
|
|
||||||
<enumerator ID="0x04" name="Function 4"/>
|
|
||||||
<enumerator ID="0x05" name="Inventory Activator"/>
|
|
||||||
<enumerator ID="0x06" name="Map Station"/>
|
|
||||||
<enumerator ID="0x07" name="Save Station"/>
|
|
||||||
<enumerator ID="0x08" name="Intro Boss Ring Controller"/>
|
|
||||||
<enumerator ID="0x09" name="View Frustum Tester (Unused)"/>
|
|
||||||
<enumerator ID="0x0A" name="Shot Spinner Controller"/>
|
|
||||||
<enumerator ID="0x0B" name="Escape Sequence"/>
|
|
||||||
<enumerator ID="0x0C" name="Boss Energy Bar"/>
|
|
||||||
<enumerator ID="0x0D" name="End Game"/>
|
|
||||||
<enumerator ID="0x0E" name="HUD Fade In"/>
|
|
||||||
<enumerator ID="0x0F" name="Cinematic Skip"/>
|
|
||||||
<enumerator ID="0x10" name="Script Layer Controller"/>
|
|
||||||
<enumerator ID="0x11" name="Rain Simulator"/>
|
|
||||||
<enumerator ID="0x12" name="Area Damage"/>
|
|
||||||
<enumerator ID="0x13" name="Object Follow Object (Unused)"/>
|
|
||||||
<enumerator ID="0x14" name="Redundant Hint System"/>
|
|
||||||
<enumerator ID="0x15" name="Drop Bomb"/>
|
|
||||||
<enumerator ID="0x16" name="Function 22"/>
|
|
||||||
<enumerator ID="0x17" name="Missile Station"/>
|
|
||||||
<enumerator ID="0x18" name="Billboard"/>
|
|
||||||
<enumerator ID="0x19" name="Player In Area Relay"/>
|
|
||||||
<enumerator ID="0x1A" name="HUD Target"/>
|
|
||||||
<enumerator ID="0x1B" name="Fog Fader"/>
|
|
||||||
<enumerator ID="0x1C" name="Enter Logbook Screen"/>
|
|
||||||
<enumerator ID="0x1D" name="Power Bomb Station"/>
|
|
||||||
<enumerator ID="0x1E" name="Ending"/>
|
|
||||||
<enumerator ID="0x1F" name="Fusion Relay"/>
|
|
||||||
<enumerator ID="0x20" name="Weapon Switch (PAL-only)"/>
|
|
||||||
</enumerators>
|
|
||||||
</enum>
|
|
|
@ -4,7 +4,7 @@
|
||||||
<properties>
|
<properties>
|
||||||
<property ID="0x00" name="Name" type="string"/>
|
<property ID="0x00" name="Name" type="string"/>
|
||||||
<property ID="0x01" name="Position" type="vector3f"/>
|
<property ID="0x01" name="Position" type="vector3f"/>
|
||||||
<property ID="0x02" name="Volume" type="vector3f"/>
|
<property ID="0x02" name="Scale" type="vector3f"/>
|
||||||
<property ID="0x03" name="Unknown 1" type="bool"/>
|
<property ID="0x03" name="Unknown 1" type="bool"/>
|
||||||
<property ID="0x04" name="Unknown 2" type="float"/>
|
<property ID="0x04" name="Unknown 2" type="float"/>
|
||||||
<property ID="0x05" name="Unknown 3" type="float"/>
|
<property ID="0x05" name="Unknown 3" type="float"/>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<property ID="0x00" name="Name" type="string"/>
|
<property ID="0x00" name="Name" type="string"/>
|
||||||
<property ID="0x01" name="Position" type="vector3f"/>
|
<property ID="0x01" name="Position" type="vector3f"/>
|
||||||
<property ID="0x02" name="Rotation" type="vector3f"/>
|
<property ID="0x02" name="Rotation" type="vector3f"/>
|
||||||
<property ID="0x03" name="Volume" type="vector3f"/>
|
<property ID="0x03" name="Scale" type="vector3f"/>
|
||||||
<property ID="0x04" name="Unknown 1" type="bool"/>
|
<property ID="0x04" name="Unknown 1" type="bool"/>
|
||||||
<property ID="0x05" name="Unknown 2" type="bool"/>
|
<property ID="0x05" name="Unknown 2" type="bool"/>
|
||||||
<property ID="0x06" name="Unknown 3" type="bool"/>
|
<property ID="0x06" name="Unknown 3" type="bool"/>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<property ID="0x00" name="Name" type="string"/>
|
<property ID="0x00" name="Name" type="string"/>
|
||||||
<property ID="0x01" name="Position" type="vector3f"/>
|
<property ID="0x01" name="Position" type="vector3f"/>
|
||||||
<property ID="0x02" name="Rotation" type="vector3f"/>
|
<property ID="0x02" name="Rotation" type="vector3f"/>
|
||||||
<property ID="0x03" name="Volume" type="vector3f"/>
|
<property ID="0x03" name="Scale" type="vector3f"/>
|
||||||
<property ID="0x04" name="Unknown 1" type="bool"/>
|
<property ID="0x04" name="Unknown 1" type="bool"/>
|
||||||
<property ID="0x05" name="Unknown 2" type="float"/>
|
<property ID="0x05" name="Unknown 2" type="float"/>
|
||||||
<property ID="0x06" name="Unknown 3" type="float"/>
|
<property ID="0x06" name="Unknown 3" type="float"/>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<properties>
|
<properties>
|
||||||
<property ID="0x00" name="Name" type="string"/>
|
<property ID="0x00" name="Name" type="string"/>
|
||||||
<property ID="0x01" name="Position" type="vector3f"/>
|
<property ID="0x01" name="Position" type="vector3f"/>
|
||||||
<property ID="0x02" name="Volume" type="vector3f"/>
|
<property ID="0x02" name="Scale" type="vector3f"/>
|
||||||
<struct ID="0x03" name="HealthInfo" template="Structs/HealthInfo.xml"/>
|
<struct ID="0x03" name="HealthInfo" template="Structs/HealthInfo.xml"/>
|
||||||
<struct ID="0x04" name="DamageVulnerability" template="Structs/DamageVulnerability.xml"/>
|
<struct ID="0x04" name="DamageVulnerability" template="Structs/DamageVulnerability.xml"/>
|
||||||
<enum ID="0x05" name="Render Side">
|
<enum ID="0x05" name="Render Side">
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<property ID="0x00" name="Name" type="string"/>
|
<property ID="0x00" name="Name" type="string"/>
|
||||||
<property ID="0x01" name="Active" type="bool"/>
|
<property ID="0x01" name="Active" type="bool"/>
|
||||||
<property ID="0x02" name="Position" type="vector3f"/>
|
<property ID="0x02" name="Position" type="vector3f"/>
|
||||||
<property ID="0x03" name="Volume" type="vector3f"/>
|
<property ID="0x03" name="Scale" type="vector3f"/>
|
||||||
<property ID="0x04" name="Dock Number" type="long"/>
|
<property ID="0x04" name="Dock Number" type="long"/>
|
||||||
<property ID="0x05" name="Room Number" type="long"/>
|
<property ID="0x05" name="Room Number" type="long"/>
|
||||||
<property ID="0x06" name="Load Automatically?" type="bool"/>
|
<property ID="0x06" name="Load Automatically?" type="bool"/>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<property ID="0x00" name="Name" type="string"/>
|
<property ID="0x00" name="Name" type="string"/>
|
||||||
<property ID="0x01" name="Position" type="vector3f"/>
|
<property ID="0x01" name="Position" type="vector3f"/>
|
||||||
<property ID="0x02" name="Rotation" type="vector3f"/>
|
<property ID="0x02" name="Rotation" type="vector3f"/>
|
||||||
<property ID="0x03" name="Volume" type="vector3f"/>
|
<property ID="0x03" name="Scale" type="vector3f"/>
|
||||||
<property ID="0x04" name="Unknown 1" type="bool"/>
|
<property ID="0x04" name="Unknown 1" type="bool"/>
|
||||||
<property ID="0x05" name="Model" type="file" extensions="CMDL"/>
|
<property ID="0x05" name="Model" type="file" extensions="CMDL"/>
|
||||||
<property ID="0x06" name="AnimationParameters" type="character"/>
|
<property ID="0x06" name="AnimationParameters" type="character"/>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<properties>
|
<properties>
|
||||||
<property ID="0x00" name="Name" type="string"/>
|
<property ID="0x00" name="Name" type="string"/>
|
||||||
<property ID="0x01" name="Position" type="vector3f"/>
|
<property ID="0x01" name="Position" type="vector3f"/>
|
||||||
<property ID="0x02" name="Volume" type="vector3f"/>
|
<property ID="0x02" name="Scale" type="vector3f"/>
|
||||||
<property ID="0x03" name="Unknown 1" type="float"/>
|
<property ID="0x03" name="Unknown 1" type="float"/>
|
||||||
<property ID="0x04" name="Unknown 2" type="float"/>
|
<property ID="0x04" name="Unknown 2" type="float"/>
|
||||||
<property ID="0x05" name="Unknown 3" type="color"/>
|
<property ID="0x05" name="Unknown 3" type="color"/>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<properties>
|
<properties>
|
||||||
<property ID="0x00" name="Name" type="string"/>
|
<property ID="0x00" name="Name" type="string"/>
|
||||||
<property ID="0x01" name="Position" type="vector3f"/>
|
<property ID="0x01" name="Position" type="vector3f"/>
|
||||||
<property ID="0x02" name="Volume" type="vector3f"/>
|
<property ID="0x02" name="Scale" type="vector3f"/>
|
||||||
<property ID="0x03" name="Active" type="bool"/>
|
<property ID="0x03" name="Active" type="bool"/>
|
||||||
<property ID="0x04" name="AnimationParameters" type="character"/>
|
<property ID="0x04" name="AnimationParameters" type="character"/>
|
||||||
<struct ID="0x05" name="ActorParameters" template="Structs/ActorParameters.xml"/>
|
<struct ID="0x05" name="ActorParameters" template="Structs/ActorParameters.xml"/>
|
||||||
|
|
|
@ -5,7 +5,43 @@
|
||||||
<property ID="0x00" name="Name" type="string"/>
|
<property ID="0x00" name="Name" type="string"/>
|
||||||
<property ID="0x01" name="Position" type="vector3f"/>
|
<property ID="0x01" name="Position" type="vector3f"/>
|
||||||
<property ID="0x02" name="Rotation" type="vector3f"/>
|
<property ID="0x02" name="Rotation" type="vector3f"/>
|
||||||
<enum ID="0x03" name="Type" template="Enums/SpecialFunctionType.xml"/>
|
<enum ID="0x03" name="Function">
|
||||||
|
<enumerators>
|
||||||
|
<enumerator ID="0x00" name="What"/>
|
||||||
|
<enumerator ID="0x01" name="Player Follow Locator"/>
|
||||||
|
<enumerator ID="0x02" name="Spinner Controller"/>
|
||||||
|
<enumerator ID="0x03" name="Object Follow Locator"/>
|
||||||
|
<enumerator ID="0x04" name="Function 4"/>
|
||||||
|
<enumerator ID="0x05" name="Inventory Activator"/>
|
||||||
|
<enumerator ID="0x06" name="Map Station"/>
|
||||||
|
<enumerator ID="0x07" name="Save Station"/>
|
||||||
|
<enumerator ID="0x08" name="Intro Boss Ring Controller"/>
|
||||||
|
<enumerator ID="0x09" name="View Frustum Tester (Unused)"/>
|
||||||
|
<enumerator ID="0x0A" name="Shot Spinner Controller"/>
|
||||||
|
<enumerator ID="0x0B" name="Escape Sequence"/>
|
||||||
|
<enumerator ID="0x0C" name="Boss Energy Bar"/>
|
||||||
|
<enumerator ID="0x0D" name="End Game"/>
|
||||||
|
<enumerator ID="0x0E" name="HUD Fade In"/>
|
||||||
|
<enumerator ID="0x0F" name="Cinematic Skip"/>
|
||||||
|
<enumerator ID="0x10" name="Script Layer Controller"/>
|
||||||
|
<enumerator ID="0x11" name="Rain Simulator"/>
|
||||||
|
<enumerator ID="0x12" name="Area Damage"/>
|
||||||
|
<enumerator ID="0x13" name="Object Follow Object (Unused)"/>
|
||||||
|
<enumerator ID="0x14" name="Redundant Hint System"/>
|
||||||
|
<enumerator ID="0x15" name="Drop Bomb"/>
|
||||||
|
<enumerator ID="0x16" name="Function 22"/>
|
||||||
|
<enumerator ID="0x17" name="Missile Station"/>
|
||||||
|
<enumerator ID="0x18" name="Billboard"/>
|
||||||
|
<enumerator ID="0x19" name="Player In Area Relay"/>
|
||||||
|
<enumerator ID="0x1A" name="HUD Target"/>
|
||||||
|
<enumerator ID="0x1B" name="Fog Fader"/>
|
||||||
|
<enumerator ID="0x1C" name="Enter Logbook Screen"/>
|
||||||
|
<enumerator ID="0x1D" name="Power Bomb Station"/>
|
||||||
|
<enumerator ID="0x1E" name="Ending"/>
|
||||||
|
<enumerator ID="0x1F" name="Fusion Relay"/>
|
||||||
|
<enumerator ID="0x20" name="Weapon Switch (PAL-only)"/>
|
||||||
|
</enumerators>
|
||||||
|
</enum>
|
||||||
<property ID="0x04" name="Unknown 1" type="string"/>
|
<property ID="0x04" name="Unknown 1" type="string"/>
|
||||||
<property ID="0x05" name="Unknown 2" type="float"/>
|
<property ID="0x05" name="Unknown 2" type="float"/>
|
||||||
<property ID="0x06" name="Unknown 3" type="float"/>
|
<property ID="0x06" name="Unknown 3" type="float"/>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<properties>
|
<properties>
|
||||||
<property ID="0x00" name="Name" type="string"/>
|
<property ID="0x00" name="Name" type="string"/>
|
||||||
<property ID="0x01" name="Position" type="vector3f"/>
|
<property ID="0x01" name="Position" type="vector3f"/>
|
||||||
<property ID="0x02" name="Volume" type="vector3f"/>
|
<property ID="0x02" name="Scale" type="vector3f"/>
|
||||||
<struct ID="0x03" name="DamageInfo" template="Structs/DamageInfo.xml"/>
|
<struct ID="0x03" name="DamageInfo" template="Structs/DamageInfo.xml"/>
|
||||||
<property ID="0x04" name="Unknown 1" type="vector3f"/>
|
<property ID="0x04" name="Unknown 1" type="vector3f"/>
|
||||||
<property ID="0x05" name="Unknown 2" type="long"/>
|
<property ID="0x05" name="Unknown 2" type="long"/>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<properties>
|
<properties>
|
||||||
<property ID="0x00" name="Name" type="string"/>
|
<property ID="0x00" name="Name" type="string"/>
|
||||||
<property ID="0x01" name="Position" type="vector3f"/>
|
<property ID="0x01" name="Position" type="vector3f"/>
|
||||||
<property ID="0x02" name="Volume" type="vector3f"/>
|
<property ID="0x02" name="Scale" type="vector3f"/>
|
||||||
<struct ID="0x03" name="DamageInfo" template="Structs/DamageInfo.xml"/>
|
<struct ID="0x03" name="DamageInfo" template="Structs/DamageInfo.xml"/>
|
||||||
<property ID="0x04" name="Force" type="vector3f"/>
|
<property ID="0x04" name="Force" type="vector3f"/>
|
||||||
<bitfield ID="0x05" name="Trigger Flags">
|
<bitfield ID="0x05" name="Trigger Flags">
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<property ID="0x00" name="Name" type="string"/>
|
<property ID="0x00" name="Name" type="string"/>
|
||||||
<property ID="0x01" name="Position" type="vector3f"/>
|
<property ID="0x01" name="Position" type="vector3f"/>
|
||||||
<property ID="0x02" name="Rotation" type="vector3f"/>
|
<property ID="0x02" name="Rotation" type="vector3f"/>
|
||||||
<property ID="0x03" name="Volume" type="vector3f"/>
|
<property ID="0x03" name="Scale" type="vector3f"/>
|
||||||
<property ID="0x04" name="Active" type="bool"/>
|
<property ID="0x04" name="Active" type="bool"/>
|
||||||
<struct ID="0x05" name="ActorParameters" template="Structs/ActorParameters.xml"/>
|
<struct ID="0x05" name="ActorParameters" template="Structs/ActorParameters.xml"/>
|
||||||
<property ID="0x06" name="Unknown 1" type="long"/>
|
<property ID="0x06" name="Unknown 1" type="long"/>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<properties>
|
<properties>
|
||||||
<property ID="0x00" name="Name" type="string"/>
|
<property ID="0x00" name="Name" type="string"/>
|
||||||
<property ID="0x01" name="Position" type="vector3f"/>
|
<property ID="0x01" name="Position" type="vector3f"/>
|
||||||
<property ID="0x02" name="Volume" type="vector3f"/>
|
<property ID="0x02" name="Scale" type="vector3f"/>
|
||||||
<struct ID="0x03" name="DamageInfo" template="Structs/DamageInfo.xml"/>
|
<struct ID="0x03" name="DamageInfo" template="Structs/DamageInfo.xml"/>
|
||||||
<property ID="0x04" name="Unknown 1" type="vector3f"/>
|
<property ID="0x04" name="Unknown 1" type="vector3f"/>
|
||||||
<property ID="0x05" name="Unknown 2" type="long"/>
|
<property ID="0x05" name="Unknown 2" type="long"/>
|
||||||
|
|
|
@ -62,8 +62,8 @@
|
||||||
</property>
|
</property>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
<struct ID="0x260792CF" template="Structs/MayaSpline.xml"/>
|
<property ID="0x260792CF" type="MayaSpline"/>
|
||||||
<struct ID="0x84284B1C" template="Structs/MayaSpline.xml"/>
|
<property ID="0x84284B1C" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
<states/>
|
<states/>
|
||||||
<messages/>
|
<messages/>
|
||||||
|
|
|
@ -11,16 +11,16 @@
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xEFE4EA57" type="multi">
|
<struct ID="0xEFE4EA57" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x69D8447D" template="Structs/MayaSpline.xml"/>
|
<property ID="0x69D8447D" type="MayaSpline"/>
|
||||||
<struct ID="0xD0239F95" template="Structs/MayaSpline.xml"/>
|
<property ID="0xD0239F95" type="MayaSpline"/>
|
||||||
<struct ID="0xC15EF5EC" template="Structs/MayaSpline.xml"/>
|
<property ID="0xC15EF5EC" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
<struct ID="0x2F7EC0A2" type="multi">
|
<struct ID="0x2F7EC0A2" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0xF437A62F" template="Structs/MayaSpline.xml"/>
|
<property ID="0xF437A62F" type="MayaSpline"/>
|
||||||
<struct ID="0x6F92EA40" template="Structs/MayaSpline.xml"/>
|
<property ID="0x6F92EA40" type="MayaSpline"/>
|
||||||
<struct ID="0x180C38B0" template="Structs/MayaSpline.xml"/>
|
<property ID="0x180C38B0" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
|
@ -20,11 +20,11 @@
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x493D6A2D" template="Structs/UnknownStruct1.xml"/>
|
<struct ID="0x493D6A2D" template="Structs/UnknownStruct1.xml"/>
|
||||||
<struct ID="0x5604D304" template="Structs/UnknownStruct1.xml"/>
|
<struct ID="0x5604D304" template="Structs/UnknownStruct1.xml"/>
|
||||||
<struct ID="0x27E5F874" template="Structs/MayaSpline.xml"/>
|
<property ID="0x27E5F874" type="MayaSpline"/>
|
||||||
<struct ID="0xC4DFBFA7" template="Structs/MayaSpline.xml"/>
|
<property ID="0xC4DFBFA7" type="MayaSpline"/>
|
||||||
<struct ID="0x6868D4B3" template="Structs/MayaSpline.xml"/>
|
<property ID="0x6868D4B3" type="MayaSpline"/>
|
||||||
<struct ID="0x6E6D8EFD" template="Structs/MayaSpline.xml"/>
|
<property ID="0x6E6D8EFD" type="MayaSpline"/>
|
||||||
<struct ID="0xF4F4798E" template="Structs/MayaSpline.xml"/>
|
<property ID="0xF4F4798E" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
<states/>
|
<states/>
|
||||||
<messages/>
|
<messages/>
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
<name>CameraPitch</name>
|
<name>CameraPitch</name>
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x255A4580" template="Structs/EditorProperties.xml"/>
|
<struct ID="0x255A4580" template="Structs/EditorProperties.xml"/>
|
||||||
<struct ID="0x81D093B3" template="Structs/MayaSpline.xml"/>
|
<property ID="0x81D093B3" type="MayaSpline"/>
|
||||||
<struct ID="0xAD9F8E3E" template="Structs/MayaSpline.xml"/>
|
<property ID="0xAD9F8E3E" type="MayaSpline"/>
|
||||||
<struct ID="0x33E4685B" template="Structs/UnknownStruct1.xml"/>
|
<struct ID="0x33E4685B" template="Structs/UnknownStruct1.xml"/>
|
||||||
<property ID="0x431769C6" type="bool">
|
<property ID="0x431769C6" type="bool">
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
|
|
|
@ -48,7 +48,7 @@
|
||||||
<property ID="0x74081E94" type="bool">
|
<property ID="0x74081E94" type="bool">
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x15567FE7" template="Structs/MayaSpline.xml"/>
|
<property ID="0x15567FE7" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
<states/>
|
<states/>
|
||||||
<messages/>
|
<messages/>
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x72531EDE" type="multi">
|
<struct ID="0x72531EDE" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x239D0D2B" template="Structs/MayaSpline.xml"/>
|
<property ID="0x239D0D2B" type="MayaSpline"/>
|
||||||
<property ID="0xC90D8899" type="float">
|
<property ID="0xC90D8899" type="float">
|
||||||
<default>0.0</default>
|
<default>0.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
@ -28,7 +28,7 @@
|
||||||
<property ID="0x456DF20C" type="long">
|
<property ID="0x456DF20C" type="long">
|
||||||
<default>0</default>
|
<default>0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x2F7C63A3" template="Structs/MayaSpline.xml"/>
|
<property ID="0x2F7C63A3" type="MayaSpline"/>
|
||||||
<property ID="0x1F6813F1" type="float">
|
<property ID="0x1F6813F1" type="float">
|
||||||
<default>0.0</default>
|
<default>0.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
@ -39,7 +39,7 @@
|
||||||
</struct>
|
</struct>
|
||||||
<struct ID="0x9546F449" type="multi">
|
<struct ID="0x9546F449" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0xFEECA0D6" template="Structs/MayaSpline.xml"/>
|
<property ID="0xFEECA0D6" type="MayaSpline"/>
|
||||||
<property ID="0x79AA798B" type="float">
|
<property ID="0x79AA798B" type="float">
|
||||||
<default>0.0</default>
|
<default>0.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x493D6A2D" template="Structs/UnknownStruct1.xml"/>
|
<struct ID="0x493D6A2D" template="Structs/UnknownStruct1.xml"/>
|
||||||
<struct ID="0x27E5F874" template="Structs/MayaSpline.xml"/>
|
<property ID="0x27E5F874" type="MayaSpline"/>
|
||||||
<property ID="0xFD1E2F56" type="float">
|
<property ID="0xFD1E2F56" type="float">
|
||||||
<default>10.0</default>
|
<default>10.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x493D6A2D" template="Structs/UnknownStruct1.xml"/>
|
<struct ID="0x493D6A2D" template="Structs/UnknownStruct1.xml"/>
|
||||||
<struct ID="0x27E5F874" template="Structs/MayaSpline.xml"/>
|
<property ID="0x27E5F874" type="MayaSpline"/>
|
||||||
<property ID="0xFD1E2F56" type="float">
|
<property ID="0xFD1E2F56" type="float">
|
||||||
<default>10.0</default>
|
<default>10.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -48,19 +48,19 @@
|
||||||
<property ID="0x2D23720F" type="long">
|
<property ID="0x2D23720F" type="long">
|
||||||
<default>-1</default>
|
<default>-1</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xEC45879E" template="Structs/MayaSpline.xml"/>
|
<property ID="0xEC45879E" type="MayaSpline"/>
|
||||||
<property ID="0xFA20775D" type="float">
|
<property ID="0xFA20775D" type="float">
|
||||||
<default>0.75</default>
|
<default>0.75</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x5E30354A" template="Structs/MayaSpline.xml"/>
|
<property ID="0x5E30354A" type="MayaSpline"/>
|
||||||
<property ID="0x3C1FA2CA" type="float">
|
<property ID="0x3C1FA2CA" type="float">
|
||||||
<default>0.75</default>
|
<default>0.75</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xB492C2AF" template="Structs/MayaSpline.xml"/>
|
<property ID="0xB492C2AF" type="MayaSpline"/>
|
||||||
<property ID="0x6D5198B4" type="float">
|
<property ID="0x6D5198B4" type="float">
|
||||||
<default>0.75</default>
|
<default>0.75</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xDF1B312C" template="Structs/MayaSpline.xml"/>
|
<property ID="0xDF1B312C" type="MayaSpline"/>
|
||||||
<property ID="0xBAC12CA0" type="float">
|
<property ID="0xBAC12CA0" type="float">
|
||||||
<default>0.75</default>
|
<default>0.75</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -257,7 +257,7 @@
|
||||||
<property ID="0xBEA96FB7" type="float">
|
<property ID="0xBEA96FB7" type="float">
|
||||||
<default>0.5</default>
|
<default>0.5</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xA25B96E1" template="Structs/MayaSpline.xml"/>
|
<property ID="0xA25B96E1" type="MayaSpline"/>
|
||||||
<struct ID="0x0E1A78BD" template="Structs/DamageInfo.xml">
|
<struct ID="0x0E1A78BD" template="Structs/DamageInfo.xml">
|
||||||
<properties>
|
<properties>
|
||||||
<property ID="0x119FBD31">
|
<property ID="0x119FBD31">
|
||||||
|
|
|
@ -68,7 +68,7 @@
|
||||||
</property>
|
</property>
|
||||||
<property ID="0x7A9F8249" type="character"/>
|
<property ID="0x7A9F8249" type="character"/>
|
||||||
<struct ID="0x38CF133B" template="Structs/ActorParameters.xml"/>
|
<struct ID="0x38CF133B" template="Structs/ActorParameters.xml"/>
|
||||||
<struct ID="0x0767060D" template="Structs/MayaSpline.xml"/>
|
<property ID="0x0767060D" type="MayaSpline"/>
|
||||||
<struct ID="0x0E6B1E70" template="Structs/CameraShakerData.xml"/>
|
<struct ID="0x0E6B1E70" template="Structs/CameraShakerData.xml"/>
|
||||||
<struct ID="0xF683FE08" template="Structs/DamageInfo.xml"/>
|
<struct ID="0xF683FE08" template="Structs/DamageInfo.xml"/>
|
||||||
<property ID="0xA77F6212" type="float">
|
<property ID="0xA77F6212" type="float">
|
||||||
|
@ -83,8 +83,8 @@
|
||||||
<property ID="0xD24B888F" type="float">
|
<property ID="0xD24B888F" type="float">
|
||||||
<default>2.0</default>
|
<default>2.0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xB459C3E9" template="Structs/MayaSpline.xml"/>
|
<property ID="0xB459C3E9" type="MayaSpline"/>
|
||||||
<struct ID="0x323E4ED0" template="Structs/MayaSpline.xml"/>
|
<property ID="0x323E4ED0" type="MayaSpline"/>
|
||||||
<property ID="0x079BC576" type="long">
|
<property ID="0x079BC576" type="long">
|
||||||
<default>-1</default>
|
<default>-1</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -10,11 +10,11 @@
|
||||||
<default>0</default>
|
<default>0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x493D6A2D" template="Structs/UnknownStruct1.xml"/>
|
<struct ID="0x493D6A2D" template="Structs/UnknownStruct1.xml"/>
|
||||||
<struct ID="0x27E5F874" template="Structs/MayaSpline.xml"/>
|
<property ID="0x27E5F874" type="MayaSpline"/>
|
||||||
<struct ID="0x5604D304" template="Structs/UnknownStruct1.xml"/>
|
<struct ID="0x5604D304" template="Structs/UnknownStruct1.xml"/>
|
||||||
<struct ID="0xC4DFBFA7" template="Structs/MayaSpline.xml"/>
|
<property ID="0xC4DFBFA7" type="MayaSpline"/>
|
||||||
<struct ID="0x6868D4B3" template="Structs/MayaSpline.xml"/>
|
<property ID="0x6868D4B3" type="MayaSpline"/>
|
||||||
<struct ID="0xEDD07160" template="Structs/MayaSpline.xml"/>
|
<property ID="0xEDD07160" type="MayaSpline"/>
|
||||||
<struct ID="0x33E4685B" template="Structs/UnknownStruct1.xml"/>
|
<struct ID="0x33E4685B" template="Structs/UnknownStruct1.xml"/>
|
||||||
<property ID="0x431769C6" type="bool">
|
<property ID="0x431769C6" type="bool">
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
|
@ -34,8 +34,8 @@
|
||||||
<property ID="0xBCD7333F" type="float">
|
<property ID="0xBCD7333F" type="float">
|
||||||
<default>120.0</default>
|
<default>120.0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x12861F7D" template="Structs/MayaSpline.xml"/>
|
<property ID="0x12861F7D" type="MayaSpline"/>
|
||||||
<struct ID="0x96AC52B0" template="Structs/MayaSpline.xml"/>
|
<property ID="0x96AC52B0" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
<states/>
|
<states/>
|
||||||
<messages/>
|
<messages/>
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
<struct ID="0x0A9DBF91" type="multi">
|
<struct ID="0x0A9DBF91" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x493D6A2D" template="Structs/UnknownStruct1.xml"/>
|
<struct ID="0x493D6A2D" template="Structs/UnknownStruct1.xml"/>
|
||||||
<struct ID="0x27E5F874" template="Structs/MayaSpline.xml"/>
|
<property ID="0x27E5F874" type="MayaSpline"/>
|
||||||
<property ID="0xFD1E2F56" type="float">
|
<property ID="0xFD1E2F56" type="float">
|
||||||
<default>10.0</default>
|
<default>10.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
@ -43,9 +43,9 @@
|
||||||
<property ID="0xAE80628F" type="long">
|
<property ID="0xAE80628F" type="long">
|
||||||
<default>288</default>
|
<default>288</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x628BDF0F" template="Structs/MayaSpline.xml"/>
|
<property ID="0x628BDF0F" type="MayaSpline"/>
|
||||||
<struct ID="0x78D03A32" template="Structs/MayaSpline.xml"/>
|
<property ID="0x78D03A32" type="MayaSpline"/>
|
||||||
<struct ID="0xB4A2E15A" template="Structs/MayaSpline.xml"/>
|
<property ID="0xB4A2E15A" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
<property ID="0x24FDEEA1" type="vector3f">
|
<property ID="0x24FDEEA1" type="vector3f">
|
||||||
|
|
|
@ -82,7 +82,7 @@
|
||||||
<property ID="0x41B72B2C" type="vector3f">
|
<property ID="0x41B72B2C" type="vector3f">
|
||||||
<default>0.0, 0.0, 0.0</default>
|
<default>0.0, 0.0, 0.0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xBBBEE60B" template="Structs/MayaSpline.xml"/>
|
<property ID="0xBBBEE60B" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
<states/>
|
<states/>
|
||||||
<messages/>
|
<messages/>
|
||||||
|
|
|
@ -12,10 +12,10 @@
|
||||||
<property ID="0x3217DFF8" type="bool">
|
<property ID="0x3217DFF8" type="bool">
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xF3FBE484" template="Structs/MayaSpline.xml"/>
|
<property ID="0xF3FBE484" type="MayaSpline"/>
|
||||||
<struct ID="0x2858C9F0" template="Structs/MayaSpline.xml"/>
|
<property ID="0x2858C9F0" type="MayaSpline"/>
|
||||||
<struct ID="0x5113198F" template="Structs/MayaSpline.xml"/>
|
<property ID="0x5113198F" type="MayaSpline"/>
|
||||||
<struct ID="0x0E727FC4" template="Structs/MayaSpline.xml"/>
|
<property ID="0x0E727FC4" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
<states/>
|
<states/>
|
||||||
<messages/>
|
<messages/>
|
||||||
|
|
|
@ -9,9 +9,81 @@
|
||||||
</property>
|
</property>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
<property ID="0x95F8D644" type="long">
|
<enum ID="0x95F8D644">
|
||||||
<default>0</default>
|
<default>0</default>
|
||||||
</property>
|
<enumerators>
|
||||||
|
<enumerator ID="0x00" name="What"/>
|
||||||
|
<enumerator ID="0x01" name="Player Follow Locator"/>
|
||||||
|
<enumerator ID="0x02" name="Spinner Controller (Unused)"/>
|
||||||
|
<enumerator ID="0x03" name="Object Follow Locator"/>
|
||||||
|
<enumerator ID="0x04" name="Function 4 (Unused)"/>
|
||||||
|
<enumerator ID="0x05" name="Inventory Activator"/>
|
||||||
|
<enumerator ID="0x06" name="Map Station"/>
|
||||||
|
<enumerator ID="0x07" name="Save Station / Checkpoint"/>
|
||||||
|
<enumerator ID="0x08" name="Intro Boss Ring Controller (Unused)"/>
|
||||||
|
<enumerator ID="0x09" name="View Frustum Tester"/>
|
||||||
|
<enumerator ID="0x0A" name="Shot Spinner Controller (Unused)"/>
|
||||||
|
<enumerator ID="0x0B" name="Escape Sequence"/>
|
||||||
|
<enumerator ID="0x0C" name="Boss Energy Bar"/>
|
||||||
|
<enumerator ID="0x0D" name="End Game"/>
|
||||||
|
<enumerator ID="0x0E" name="HUD Fade In (Unused)"/>
|
||||||
|
<enumerator ID="0x0F" name="Cinematic Skip"/>
|
||||||
|
<enumerator ID="0x10" name="Script Layer Controller (Unused)"/>
|
||||||
|
<enumerator ID="0x11" name="Rain Simulator (Unused)"/>
|
||||||
|
<enumerator ID="0x12" name="Area Damage (Unused)"/>
|
||||||
|
<enumerator ID="0x13" name="Object Follow Object"/>
|
||||||
|
<enumerator ID="0x14" name="Redundant Hint System"/>
|
||||||
|
<enumerator ID="0x15" name="Drop Bomb (Unused)"/>
|
||||||
|
<enumerator ID="0x16" name="Function 22 (Unused)"/>
|
||||||
|
<enumerator ID="0x17" name="Missile Station (Unused)"/>
|
||||||
|
<enumerator ID="0x18" name="Billboard (Unused)"/>
|
||||||
|
<enumerator ID="0x19" name="Player In Area Relay"/>
|
||||||
|
<enumerator ID="0x1A" name="HUD Target (Unused)"/>
|
||||||
|
<enumerator ID="0x1B" name="Fog Fader"/>
|
||||||
|
<enumerator ID="0x1C" name="Enter Logbook Screen (Unused)"/>
|
||||||
|
<enumerator ID="0x1D" name="Power Bomb Station (Unused)"/>
|
||||||
|
<enumerator ID="0x1E" name="Ending"/>
|
||||||
|
<enumerator ID="0x1F" name="Fusion Relay (Unused)"/>
|
||||||
|
<enumerator ID="0x20" name="Weapon Switch (Unused)"/>
|
||||||
|
<enumerator ID="0x21" name="Launch Player"/>
|
||||||
|
<enumerator ID="0x22" name="Function 34 (Unused)"/>
|
||||||
|
<enumerator ID="0x23" name="Darkworld"/>
|
||||||
|
<enumerator ID="0x24" name="Function 36 (Unused)"/>
|
||||||
|
<enumerator ID="0x25" name="Function 37 (Unused)"/>
|
||||||
|
<enumerator ID="0x26" name="Function 38 (Unused)"/>
|
||||||
|
<enumerator ID="0x27" name="Function 39 (Unused)"/>
|
||||||
|
<enumerator ID="0x28" name="Set NumPlayers___/Remove Hacked Effect"/>
|
||||||
|
<enumerator ID="0x29" name="Enable Cannon Ball Damage"/>
|
||||||
|
<enumerator ID="0x2A" name="Modify Inventory Amount"/>
|
||||||
|
<enumerator ID="0x2B" name="Increment/Decrement Players Joined Count"/>
|
||||||
|
<enumerator ID="0x2C" name="Inventory Thing 1"/>
|
||||||
|
<enumerator ID="0x2D" name="Inventory Thing 2"/>
|
||||||
|
<enumerator ID="0x2E" name="Function 46 (Unused)"/>
|
||||||
|
<enumerator ID="0x2F" name="Automatic Sun Placement"/>
|
||||||
|
<enumerator ID="0x30" name="Function 48 (Unused)"/>
|
||||||
|
<enumerator ID="0x31" name="Wipe On/Off ___"/>
|
||||||
|
<enumerator ID="0x32" name="Function 50 (Unused)"/>
|
||||||
|
<enumerator ID="0x33" name="Inventory Lost"/>
|
||||||
|
<enumerator ID="0x34" name="Function 52 (Unused)"/>
|
||||||
|
<enumerator ID="0x35" name="Sun Generator Teleporter"/>
|
||||||
|
<enumerator ID="0x36" name="Sky Fader"/>
|
||||||
|
<enumerator ID="0x37" name="Occlusion Relay"/>
|
||||||
|
<enumerator ID="0x38" name="Multiplayer Countdown"/>
|
||||||
|
<enumerator ID="0x39" name="Scale SZ"/>
|
||||||
|
<enumerator ID="0x3A" name="Attach ___"/>
|
||||||
|
<enumerator ID="0x3B" name="Function 59 (Unused)"/>
|
||||||
|
<enumerator ID="0x3C" name="Extra Render Clip Plane"/>
|
||||||
|
<enumerator ID="0x3D" name="Visor Blowout"/>
|
||||||
|
<enumerator ID="0x3E" name="Area Auto Load Controller"/>
|
||||||
|
<enumerator ID="0x3F" name="Unlock Multiplayer Music"/>
|
||||||
|
<enumerator ID="0x40" name="Enable Darkworld Automapper button"/>
|
||||||
|
<enumerator ID="0x41" name="Play Selected Music [Multiplayer]"/>
|
||||||
|
<enumerator ID="0x42" name="Translator Door Location"/>
|
||||||
|
<enumerator ID="0x43" name="Cinematic Skip Signal"/>
|
||||||
|
<enumerator ID="0x44" name="Remove Rezbit Virus"/>
|
||||||
|
<enumerator ID="0x45" name="Credits"/>
|
||||||
|
</enumerators>
|
||||||
|
</enum>
|
||||||
<property ID="0x9D7A576D" type="string"/>
|
<property ID="0x9D7A576D" type="string"/>
|
||||||
<property ID="0x19028099" type="float">
|
<property ID="0x19028099" type="float">
|
||||||
<default>0.0</default>
|
<default>0.0</default>
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
<property ID="0x33B4F106" type="bool">
|
<property ID="0x33B4F106" type="bool">
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xC4DFBFA7" template="Structs/MayaSpline.xml"/>
|
<property ID="0xC4DFBFA7" type="MayaSpline"/>
|
||||||
<struct ID="0x33E4685B" template="Structs/UnknownStruct1.xml"/>
|
<struct ID="0x33E4685B" template="Structs/UnknownStruct1.xml"/>
|
||||||
<property ID="0x431769C6" type="bool">
|
<property ID="0x431769C6" type="bool">
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
<property ID="0x1405B5E4" type="long">
|
<property ID="0x1405B5E4" type="long">
|
||||||
<default>1</default>
|
<default>1</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x922D151F" template="Structs/MayaSpline.xml"/>
|
<property ID="0x922D151F" type="MayaSpline"/>
|
||||||
<property ID="0x1D8B933F" type="vector3f">
|
<property ID="0x1D8B933F" type="vector3f">
|
||||||
<default>0.0, 0.0, 0.0</default>
|
<default>0.0, 0.0, 0.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
@ -21,8 +21,8 @@
|
||||||
<property ID="0x33B4F106" type="bool">
|
<property ID="0x33B4F106" type="bool">
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xC4DFBFA7" template="Structs/MayaSpline.xml"/>
|
<property ID="0xC4DFBFA7" type="MayaSpline"/>
|
||||||
<struct ID="0x6868D4B3" template="Structs/MayaSpline.xml"/>
|
<property ID="0x6868D4B3" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
<states/>
|
<states/>
|
||||||
<messages/>
|
<messages/>
|
||||||
|
|
|
@ -7,9 +7,9 @@
|
||||||
<property ID="0x4D283AC5" type="float">
|
<property ID="0x4D283AC5" type="float">
|
||||||
<default>5.0</default>
|
<default>5.0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xF122CD97" template="Structs/MayaSpline.xml"/>
|
<property ID="0xF122CD97" type="MayaSpline"/>
|
||||||
<struct ID="0x2927E544" template="Structs/MayaSpline.xml"/>
|
<property ID="0x2927E544" type="MayaSpline"/>
|
||||||
<struct ID="0x7CFA4678" template="Structs/MayaSpline.xml"/>
|
<property ID="0x7CFA4678" type="MayaSpline"/>
|
||||||
<property ID="0x8B51E23F" type="float">
|
<property ID="0x8B51E23F" type="float">
|
||||||
<default>1.0</default>
|
<default>1.0</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -4,9 +4,9 @@
|
||||||
<property ID="0xDE3E40A3" type="long">
|
<property ID="0xDE3E40A3" type="long">
|
||||||
<default>1</default>
|
<default>1</default>
|
||||||
</property>
|
</property>
|
||||||
<property ID="0xD3AF8D72" type="long">
|
<enum ID="0xD3AF8D72" template="Enums/Item.xml">
|
||||||
<default>0</default>
|
<default>0</default>
|
||||||
</property>
|
</enum>
|
||||||
<property ID="0x03BDEA98" type="long">
|
<property ID="0x03BDEA98" type="long">
|
||||||
<default>0</default>
|
<default>0</default>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -4,6 +4,6 @@
|
||||||
<property ID="0x3E9CF140" type="long">
|
<property ID="0x3E9CF140" type="long">
|
||||||
<default>0</default>
|
<default>0</default>
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0x9A598FA5" template="Structs/MayaSpline.xml"/>
|
<property ID="0x9A598FA5" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
|
|
|
@ -77,8 +77,8 @@
|
||||||
</property>
|
</property>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
<struct ID="0x260792CF" template="Structs/MayaSpline.xml"/>
|
<property ID="0x260792CF" type="MayaSpline"/>
|
||||||
<struct ID="0x84284B1C" template="Structs/MayaSpline.xml"/>
|
<property ID="0x84284B1C" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
<states/>
|
<states/>
|
||||||
<messages/>
|
<messages/>
|
||||||
|
|
|
@ -11,16 +11,16 @@
|
||||||
</property>
|
</property>
|
||||||
<struct ID="0xEFE4EA57" type="multi">
|
<struct ID="0xEFE4EA57" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0x69D8447D" template="Structs/MayaSpline.xml"/>
|
<property ID="0x69D8447D" type="MayaSpline"/>
|
||||||
<struct ID="0xD0239F95" template="Structs/MayaSpline.xml"/>
|
<property ID="0xD0239F95" type="MayaSpline"/>
|
||||||
<struct ID="0xC15EF5EC" template="Structs/MayaSpline.xml"/>
|
<property ID="0xC15EF5EC" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
<struct ID="0x2F7EC0A2" type="multi">
|
<struct ID="0x2F7EC0A2" type="multi">
|
||||||
<properties>
|
<properties>
|
||||||
<struct ID="0xF437A62F" template="Structs/MayaSpline.xml"/>
|
<property ID="0xF437A62F" type="MayaSpline"/>
|
||||||
<struct ID="0x6F92EA40" template="Structs/MayaSpline.xml"/>
|
<property ID="0x6F92EA40" type="MayaSpline"/>
|
||||||
<struct ID="0x180C38B0" template="Structs/MayaSpline.xml"/>
|
<property ID="0x180C38B0" type="MayaSpline"/>
|
||||||
</properties>
|
</properties>
|
||||||
</struct>
|
</struct>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue