mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
Fixed problem when duplicating gradient (interpolation mode was not copied)
This commit is contained in:
parent
816a758652
commit
d72f1f2055
@ -151,7 +151,7 @@ func get_input_shader(input_index : int) -> Dictionary:
|
||||
func get_shader(output_index : int, context) -> Dictionary:
|
||||
return get_shader_code("UV", output_index, context)
|
||||
|
||||
func render(output_index : int, size : int):
|
||||
func render(output_index : int, size : int) -> Object:
|
||||
var context : MMGenContext = MMGenContext.new()
|
||||
var source = get_shader_code("UV", output_index, context)
|
||||
while source is GDScriptFunctionState:
|
||||
|
@ -148,5 +148,6 @@ func deserialize(v) -> void:
|
||||
clear()
|
||||
for p in v.points:
|
||||
add_point(p.v, p.c)
|
||||
interpolation = v.interpolation
|
||||
else:
|
||||
print("Cannot deserialize gradient")
|
||||
|
Loading…
Reference in New Issue
Block a user