Skip to content
Snippets Groups Projects
Unverified Commit 3682069d authored by TheJackiMonster's avatar TheJackiMonster
Browse files

Added variation to lifetime and particle velocity

parent 2392f040
No related branches found
No related tags found
1 merge request!106Created initial firework project
......@@ -109,7 +109,7 @@ void main() {
return;
}
lifetime = events[event_id].lifetime;
lifetime = events[event_id].lifetime * (1.0f + 0.1f * randomData[(id + 1) % randomData.length()]);
vec3 direction;
if (dot(events[event_id].direction, events[event_id].direction) <= 0.0f) {
......@@ -152,7 +152,7 @@ void main() {
smokes[sid].eventID = event_id;
}
velocity += normalize(direction) * v;
velocity += normalize(direction) * v * (1.0f + 0.1f * randomData[(id + 2) % randomData.length()]);;
const float split = pow(1.0f / events[event_id].count, 1.0f / 3.0f);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment