Graphics/ParticleStruct: Replace life type from UInt32 to float

This commit is contained in:
Lynix 2016-11-23 14:07:38 +01:00
parent 88895df1d0
commit c4e837b14f
1 changed files with 4 additions and 4 deletions

View File

@ -21,16 +21,16 @@ namespace Nz
Vector3f normal; Vector3f normal;
Vector3f position; Vector3f position;
Vector3f velocity; Vector3f velocity;
UInt32 life; float life;
float rotation; float rotation;
}; };
struct ParticleStruct_Model struct ParticleStruct_Model
{ {
Quaternionf rotation;
Vector3f position; Vector3f position;
Vector3f velocity; Vector3f velocity;
UInt32 life; float life;
Quaternionf rotation;
}; };
struct ParticleStruct_Sprite struct ParticleStruct_Sprite
@ -38,7 +38,7 @@ namespace Nz
Color color; Color color;
Vector3f position; Vector3f position;
Vector3f velocity; Vector3f velocity;
UInt32 life; float life;
float rotation; float rotation;
}; };
} }