t2-demo-parser 3.0.2 → 4.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1581,9 +1581,9 @@ function forceFieldBareDataUnpack(bs) {
1581
1581
  result.fadeMS = bs.readS32();
1582
1582
  result.baseTranslucency = bs.readF32();
1583
1583
  result.powerOffTranslucency = bs.readF32();
1584
- // 2 readFlag (offsets 0x8c, 0x8d 1-bit flags, inline bit extraction)
1585
- result.fadeInOnly = bs.readFlag();
1586
- result.triggerEnable = bs.readFlag();
1584
+ // initPersistFields (0x6751a0) names offsets 0x8c/0x8d; unpackData reads them in that order.
1585
+ result.teamPermiable = bs.readFlag();
1586
+ result.otherPermiable = bs.readFlag();
1587
1587
  // 2 ColorF via FUN_0043f040 (packed 4×U8 = 32 bits each, offsets 0x90, 0xa0)
1588
1588
  result.color1 = readColorF(bs);
1589
1589
  result.color2 = readColorF(bs);