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 position;
Vector3f velocity;
UInt32 life;
float life;
float rotation;
};
struct ParticleStruct_Model
{
Quaternionf rotation;
Vector3f position;
Vector3f velocity;
UInt32 life;
Quaternionf rotation;
float life;
};
struct ParticleStruct_Sprite
@ -38,7 +38,7 @@ namespace Nz
Color color;
Vector3f position;
Vector3f velocity;
UInt32 life;
float life;
float rotation;
};
}