Skip to content

Commit

Permalink
Merge pull request #84029 from QbieShay/qbe/fix-last-flag
Browse files Browse the repository at this point in the history
Fix damp as friction not updating shader code
  • Loading branch information
akien-mga committed Oct 28, 2023
2 parents dc3a643 + aad6445 commit a379bee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scene/resources/particle_process_material.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class ParticleProcessMaterial : public Material {
// Consider this when extending ParticleFlags, EmissionShape, or SubEmitterMode.
uint64_t texture_mask : PARAM_MAX;
uint64_t texture_color : 1;
uint64_t particle_flags : PARTICLE_FLAG_MAX - 1;
uint64_t particle_flags : PARTICLE_FLAG_MAX;
uint64_t emission_shape : 3;
uint64_t invalid_key : 1;
uint64_t has_emission_color : 1;
Expand Down

0 comments on commit a379bee

Please sign in to comment.