mirror of
https://github.com/godotengine/godot.git
synced 2025-04-01 00:41:35 +08:00
Merge pull request #46687 from QbieShay/fix-particle-rotate-y
This commit is contained in:
commit
31581ca429
@ -567,7 +567,7 @@ void ParticlesMaterial::_update_shader() {
|
||||
}
|
||||
// turn particle by rotation in Y
|
||||
if (flags[FLAG_ROTATE_Y]) {
|
||||
code += " TRANSFORM = TRANSFORM * mat4(vec4(cos(CUSTOM.x), 0.0, -sin(CUSTOM.x), 0.0), vec4(0.0, 1.0, 0.0, 0.0), vec4(sin(CUSTOM.x), 0.0, cos(CUSTOM.x), 0.0), vec4(0.0, 0.0, 0.0, 1.0));\n";
|
||||
code += " TRANSFORM = mat4(vec4(cos(CUSTOM.x), 0.0, -sin(CUSTOM.x), 0.0), vec4(0.0, 1.0, 0.0, 0.0), vec4(sin(CUSTOM.x), 0.0, cos(CUSTOM.x), 0.0), vec4(0.0, 0.0, 0.0, 1.0));\n";
|
||||
}
|
||||
}
|
||||
//scale by scale
|
||||
|
Loading…
x
Reference in New Issue
Block a user