These files hold 3D data, or morph targets for basic actor face shapes, and can be created by LH's
StarMaker.
This template is unfinished...
Technical File Info
//--------------------------------------
//--- 010 Editor v2.1.3 Binary Template
//
// File: LH .hd (head files)
// Author: Glen Rickey (With additions from research by Rileyman)
// Revision: .03
// Purpose: To parse LH The Movies tm Head files (.hd)
//--------------------------------------
struct VertData {
float posX;
float posY;
float posZ;
float normX;
float normY;
float normZ;
};
struct hd_file
{
int Magic;
ubyte Unk[8];
char TextureFile1[32];
char TextureFile2[32];
char HeadFile1[32];
char HeadFile2[32];
float mix;
float pad;
VertData FaceVerts[996];
float Param[11952];
} hd;
There are no comments on this page. [Add comment]