EvilEngine/DYNA/npc:CoverPoint: Difference between revisions

From Heavy Iron Modding
Content added Content deleted
(Created page with "<onlyinclude> {{#vardefine:name|npc:CoverPoint}}<nowiki/> {{#vardefine:version|}}<nowiki/> {{#vardefine:hash|0x48C0D3A6}}<nowiki/> {{#vardefine:games|ROTU}}<nowiki/> {{#vardef...")
 
No edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 3: Line 3:
{{#vardefine:version|}}<nowiki/>
{{#vardefine:version|}}<nowiki/>
{{#vardefine:hash|0x48C0D3A6}}<nowiki/>
{{#vardefine:hash|0x48C0D3A6}}<nowiki/>
{{#vardefine:games|ROTU}}<nowiki/>
{{#vardefine:games|ROTU RatProto}}<nowiki/>
{{#vardefine:sourcecode|}}<nowiki/>
{{#vardefine:sourcecode|}}<nowiki/>
{{#vardefine:image|}}<nowiki/>
{{#vardefine:image|}}<nowiki/>
</onlyinclude>
</onlyinclude>
{{AutoDynaInfobox}}
{{AutoDynaInfobox}}

==Format==
Unused in Ratatouille Prototype but is still supported.

<source lang=cpp>
struct zNPCCoverPointAsset : xDynAsset
{
typedef int VERSION;

xVec3 location;
float directionYaw;
float directionPitch;
float directionRoll;
unsigned int assetID;
};
</source>

{| class="wikitable"
! Offset !! Type !! Variable !! Description
|-
| 0x10 || [[Vector3]] || '''location''' ||
|-
| 0x1C || f32 || '''directionYaw''' ||
|-
| 0x20 || f32 || '''directionPitch''' ||
|-
| 0x24 || f32 || '''directionRoll''' ||
|-
| 0x28 || [[AssetID]] || '''assetID''' ||
|}


{{DynaAssets}}
{{DynaAssets}}

Latest revision as of 13:40, 19 September 2023

npc:CoverPoint
Hash0x48C0D3A6
Games usedRise of the Underminer
Ratatouille Prototype

Format

Unused in Ratatouille Prototype but is still supported.

struct zNPCCoverPointAsset : xDynAsset
{
    typedef int VERSION;

    xVec3 location;
    float directionYaw;
    float directionPitch;
    float directionRoll;
    unsigned int assetID;
};
Offset Type Variable Description
0x10 Vector3 location
0x1C f32 directionYaw
0x20 f32 directionPitch
0x24 f32 directionRoll
0x28 AssetID assetID