2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-05-13 05:41:43 +00:00

Make sure assets need to be declared as temp block to be located in temp block to handle special case of iw3 stringtable not being in temp block

This commit is contained in:
Jan
2021-04-15 13:42:03 +02:00
parent 742cb596e6
commit dbcbb4a4b3
110 changed files with 194 additions and 47 deletions
@@ -2,6 +2,7 @@
// ComWorld
// =========================================
use ComWorld;
set block XFILE_BLOCK_TEMP;
set string name;
set name name;
set count primaryLights primaryLightCount;
+1
View File
@@ -2,6 +2,7 @@
// Font_s
// =========================================
use Font_s;
set block XFILE_BLOCK_TEMP;
set string fontName;
set name fontName;
set reusable glyphs;
@@ -2,6 +2,7 @@
// FxEffectDef
// =========================================
use FxEffectDef;
set block XFILE_BLOCK_TEMP;
set string name;
set name name;
set count elemDefs elemDefCountEmission + elemDefCountLooping + elemDefCountOneShot;
@@ -2,6 +2,7 @@
// FxImpactTable
// =========================================
use FxImpactTable;
set block XFILE_BLOCK_TEMP;
set string name;
set name name;
set count table 12;
@@ -2,5 +2,6 @@
// GameWorldMp
// =========================================
use GameWorldMp;
set block XFILE_BLOCK_TEMP;
set string name;
set name name;
@@ -2,6 +2,7 @@
// GameWorldSp
// =========================================
use GameWorldSp;
set block XFILE_BLOCK_TEMP;
set string name;
set name name;
@@ -2,6 +2,7 @@
// GfxImage
// =========================================
use GfxImage;
set block XFILE_BLOCK_TEMP;
set action OnImageLoaded(GfxImage);
set string name;
set name name;
@@ -2,5 +2,6 @@
// GfxLightDef
// =========================================
use GfxLightDef;
set block XFILE_BLOCK_TEMP;
set string name;
set name name;
@@ -2,6 +2,7 @@
// GfxWorld
// =========================================
use GfxWorld;
set block XFILE_BLOCK_TEMP;
set string name;
set name name;
set string baseName;
@@ -2,6 +2,7 @@
// LoadedSound
// =========================================
use LoadedSound;
set block XFILE_BLOCK_TEMP;
set string name;
set name name;
@@ -2,6 +2,7 @@
// LocalizeEntry
// =========================================
use LocalizeEntry;
set block XFILE_BLOCK_TEMP;
set string name;
set name name;
set string value;
@@ -2,6 +2,7 @@
// MapEnts
// =========================================
use MapEnts;
set block XFILE_BLOCK_TEMP;
set string name;
set name name;
set count entityString numEntityChars;
@@ -2,6 +2,7 @@
// Material
// =========================================
use Material;
set block XFILE_BLOCK_TEMP;
set string info::name;
set name info::name;
set reusable textureTable;
@@ -2,6 +2,7 @@
// MaterialTechniqueSet
// =========================================
use MaterialTechniqueSet;
set block XFILE_BLOCK_TEMP;
set string name;
set name name;
set condition remappedTechniqueSet never;
@@ -2,6 +2,7 @@
// MenuList
// =========================================
use MenuList;
set block XFILE_BLOCK_TEMP;
set string name;
set name name;
set count menus menuCount;
@@ -2,6 +2,7 @@
// PhysPreset
// =========================================
use PhysPreset;
set block XFILE_BLOCK_TEMP;
set string name;
set name name;
set string sndAliasPrefix;
@@ -2,6 +2,7 @@
// RawFile
// =========================================
use RawFile;
set block XFILE_BLOCK_TEMP;
set string name;
set name name;
set count buffer len + 1;
@@ -2,5 +2,6 @@
// SndCurve
// =========================================
use SndCurve;
set block XFILE_BLOCK_TEMP;
set string filename;
set name filename;
@@ -2,6 +2,7 @@
// StringTable
// =========================================
use StringTable;
// String table is not in the temp block for some reason. nice.
set string name;
set name name;
set string values;
@@ -2,6 +2,7 @@
// WeaponDef
// =========================================
use WeaponDef;
set block XFILE_BLOCK_TEMP;
set string szInternalName;
set name szInternalName;
set string szDisplayName;
@@ -2,6 +2,7 @@
// XAnimParts
// =========================================
use XAnimParts;
set block XFILE_BLOCK_TEMP;
set string name;
set name name;
set scriptstring names;
+1
View File
@@ -2,6 +2,7 @@
// XModel
// =========================================
use XModel;
set block XFILE_BLOCK_TEMP;
set string name;
set name name;
set scriptstring boneNames;
@@ -2,6 +2,7 @@
// clipMap_t
// =========================================
use clipMap_t;
set block XFILE_BLOCK_TEMP;
set string name;
set name name;
set reusable planes;
@@ -2,6 +2,7 @@
// menuDef_t
// =========================================
use menuDef_t;
set block XFILE_BLOCK_TEMP;
set string window::name;
set name window::name;
set string font;
@@ -2,6 +2,7 @@
// snd_alias_list_t
// =========================================
use snd_alias_list_t;
set block XFILE_BLOCK_TEMP;
set string aliasName;
set name aliasName;
set reusable head;