mirror of
https://github.com/godotengine/godot.git
synced 2025-01-25 03:10:48 +00:00
Merge pull request #23899 from BastiaanOlij/fix_particle_active
Remapped ACTIVE to shader_active, now works
This commit is contained in:
commit
e2caaf1b6d
@ -931,7 +931,7 @@ ShaderCompilerGLES2::ShaderCompilerGLES2() {
|
||||
actions[VS::SHADER_PARTICLES].renames["COLOR"] = "out_color";
|
||||
actions[VS::SHADER_PARTICLES].renames["VELOCITY"] = "out_velocity_active.xyz";
|
||||
actions[VS::SHADER_PARTICLES].renames["MASS"] = "mass";
|
||||
actions[VS::SHADER_PARTICLES].renames["ACTIVE"] = "active";
|
||||
actions[VS::SHADER_PARTICLES].renames["ACTIVE"] = "shader_active";
|
||||
actions[VS::SHADER_PARTICLES].renames["RESTART"] = "restart";
|
||||
actions[VS::SHADER_PARTICLES].renames["CUSTOM"] = "out_custom";
|
||||
actions[VS::SHADER_PARTICLES].renames["TRANSFORM"] = "xform";
|
||||
|
@ -948,7 +948,7 @@ ShaderCompilerGLES3::ShaderCompilerGLES3() {
|
||||
actions[VS::SHADER_PARTICLES].renames["COLOR"] = "out_color";
|
||||
actions[VS::SHADER_PARTICLES].renames["VELOCITY"] = "out_velocity_active.xyz";
|
||||
actions[VS::SHADER_PARTICLES].renames["MASS"] = "mass";
|
||||
actions[VS::SHADER_PARTICLES].renames["ACTIVE"] = "active";
|
||||
actions[VS::SHADER_PARTICLES].renames["ACTIVE"] = "shader_active";
|
||||
actions[VS::SHADER_PARTICLES].renames["RESTART"] = "restart";
|
||||
actions[VS::SHADER_PARTICLES].renames["CUSTOM"] = "out_custom";
|
||||
actions[VS::SHADER_PARTICLES].renames["TRANSFORM"] = "xform";
|
||||
|
Loading…
Reference in New Issue
Block a user