mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-23 06:15:37 +00:00
483dbdda2e
We're not blending between LODs yet as we're not sure of the best way to implement it Also implementing control bits for disable culling and enable model scale (needed for ECA and Harley)
20 lines
218 B
C
20 lines
218 B
C
#ifndef _R3DDATA_H_
|
|
#define _R3DDATA_H_
|
|
|
|
struct LOD
|
|
{
|
|
float deleteSize;
|
|
float blendFactor;
|
|
};
|
|
|
|
struct LODFeatureType
|
|
{
|
|
LOD lod[4];
|
|
};
|
|
|
|
struct LODBlendTable
|
|
{
|
|
LODFeatureType table[128];
|
|
};
|
|
|
|
#endif |