EvilEngine/DYNA/effect:Waterhose: Difference between revisions

From Heavy Iron Modding
Content added Content deleted
No edit summary
No edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 3: Line 3:
{{#vardefine:version|}}<nowiki/>
{{#vardefine:version|}}<nowiki/>
{{#vardefine:hash|0x03E64AEB}}<nowiki/>
{{#vardefine:hash|0x03E64AEB}}<nowiki/>
{{#vardefine:games|}}<nowiki/>
{{#vardefine:games|Incredibles}}<nowiki/>
{{#vardefine:sourcecode|}}<nowiki/>
{{#vardefine:sourcecode|}}<nowiki/>
{{#vardefine:image|}}<nowiki/>
{{#vardefine:image|}}<nowiki/>
Line 9: Line 9:
{{AutoDynaInfobox}}
{{AutoDynaInfobox}}


Unused Dynamic Type that's not used in any game
Unused Dynamic Type. Code can be found in The Incredibles.

==Format==

<source lang=cpp>
class zWaterhoseAsset : public xDynAsset
{
public:
xVec3 startPos;
xVec3 endPos;
xColor_tag color;
unsigned int sound;
unsigned int soundHit;
};
</source>


{| class="wikitable"
{| class="wikitable"
! Offset !! Type !! Variable !! Description
! Offset !! Type !! Variable !! Description
|-
|-
| 0x00 || [[Vector3]] || '''startpos''' ||
| 0x10 || [[Vector3]] || '''startpos''' ||
|-
|-
| 0x0C || [[Vector3]] || '''endpos''' ||
| 0x1C || [[Vector3]] || '''endpos''' ||
|-
|-
| 0x18 || ColorTag || '''color''' ||
| 0x28 || [[Color]]|| '''color''' ||
|-
|-
| 0x1C || [[SGRP]] || '''sound''' ||
| 0x2C || [[AssetID]] || '''sound''' ||
|-
|-
| 0x20 || [[SGRP]] || '''soundhit''' ||
| 0x30 || [[AssetID]] || '''soundhit''' ||
|}
|}



Latest revision as of 16:55, 19 September 2023

effect:Waterhose
Hash0x03E64AEB
Games usedThe Incredibles

Unused Dynamic Type. Code can be found in The Incredibles.

Format

class zWaterhoseAsset : public xDynAsset
{
public:
    xVec3 startPos;
    xVec3 endPos;
    xColor_tag color;
    unsigned int sound;
    unsigned int soundHit;
};
Offset Type Variable Description
0x10 Vector3 startpos
0x1C Vector3 endpos
0x28 Color color
0x2C AssetID sound
0x30 AssetID soundhit