Remove outdated "not implemented yet" comments in ParticlesMaterial

These features have been working as of 4.0.alpha8.
This commit is contained in:
Hugo Locurcio 2022-05-20 23:28:12 +02:00
parent 410893ad0f
commit 3afc03455e
No known key found for this signature in database
GPG key ID: 39E8F8BE30B0A49C

View file

@ -722,11 +722,9 @@ void ParticlesMaterial::_update_shader() {
code += " if (DELTA >= interval_rem) emit_count = 1;\n";
} break;
case SUB_EMITTER_AT_COLLISION: {
//not implemented yet
code += " if (COLLIDED) emit_count = 1;\n";
} break;
case SUB_EMITTER_AT_END: {
//not implemented yet
code += " float unit_delta = DELTA/LIFETIME;\n";
code += " float end_time = CUSTOM.w * 0.95;\n"; // if we do at the end we might miss it, as it can just get deactivated by emitter
code += " if (CUSTOM.y < end_time && (CUSTOM.y + unit_delta) >= end_time) emit_count = sub_emitter_amount_at_end;\n";