summaryrefslogtreecommitdiff
path: root/src/particles.h
diff options
context:
space:
mode:
authorFoghrye4 <foghrye4@gmail.com>2016-11-14 18:09:59 +0400
committerZeno- <kde.psych@gmail.com>2016-11-15 00:09:59 +1000
commit93e3555eae2deaeca69ee252cfa9cc9c3e0e49ef (patch)
tree9b9b665b97c01f0b281652a85088b336cc4cefde /src/particles.h
parent649448a2a91fbf3e944b2f2e739f4e2292af1df0 (diff)
downloadminetest-93e3555eae2deaeca69ee252cfa9cc9c3e0e49ef.tar.gz
minetest-93e3555eae2deaeca69ee252cfa9cc9c3e0e49ef.tar.bz2
minetest-93e3555eae2deaeca69ee252cfa9cc9c3e0e49ef.zip
Adding particle blend, glow and animation (#4705)
Diffstat (limited to 'src/particles.h')
-rw-r--r--src/particles.h32
1 files changed, 30 insertions, 2 deletions
diff --git a/src/particles.h b/src/particles.h
index eb8c6665d..6d8c6139f 100644
--- a/src/particles.h
+++ b/src/particles.h
@@ -50,7 +50,14 @@ class Particle : public scene::ISceneNode
bool vertical,
video::ITexture *texture,
v2f texpos,
- v2f texsize
+ v2f texsize,
+ u32 material_type_param,
+ u16 vertical_frame_num,
+ u16 horizontal_frame_num,
+ u16 first_frame,
+ float frame_length,
+ bool loop_animation,
+ u8 glow
);
~Particle();
@@ -102,6 +109,12 @@ private:
bool m_collision_removal;
bool m_vertical;
v3s16 m_camera_offset;
+ u16 m_vertical_frame_num;
+ u16 m_horizontal_frame_num;
+ u16 m_first_frame;
+ float m_frame_length;
+ bool m_loop_animation;
+ u8 m_glow;
};
class ParticleSpawner
@@ -123,8 +136,15 @@ class ParticleSpawner
bool vertical,
video::ITexture *texture,
u32 id,
+ u32 material_type_param,
+ u16 vertical_frame_num,
+ u16 horizontal_frame_num,
+ u16 min_first_frame,
+ u16 max_first_frame,
+ float frame_length,
+ bool loop_animation,
+ u8 glow,
ParticleManager* p_manager);
-
~ParticleSpawner();
void step(float dtime, ClientEnvironment *env);
@@ -156,6 +176,14 @@ class ParticleSpawner
bool m_collision_removal;
bool m_vertical;
u16 m_attached_id;
+ u32 m_material_type_param;
+ u16 m_vertical_frame_num;
+ u16 m_horizontal_frame_num;
+ u16 m_min_first_frame;
+ u16 m_max_first_frame;
+ float m_frame_length;
+ bool m_loop_animation;
+ u8 m_glow;
};
/**