You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-07 19:53:17 +00:00
Merge pull request #5757 from Razzlegames/blendIndexFix
Could not use pre multiply alpha for material in editor
This commit is contained in:
@@ -68,7 +68,7 @@ void Material::set_flag(Flag p_flag,bool p_enabled) {
|
||||
|
||||
void Material::set_blend_mode(BlendMode p_blend_mode) {
|
||||
|
||||
ERR_FAIL_INDEX(p_blend_mode,3);
|
||||
ERR_FAIL_INDEX(p_blend_mode,4);
|
||||
blend_mode=p_blend_mode;
|
||||
VisualServer::get_singleton()->material_set_blend_mode(material,(VS::MaterialBlendMode)p_blend_mode);
|
||||
_change_notify();
|
||||
|
||||
Reference in New Issue
Block a user