From 5430f96f296c1b8c0ce15721f12f4e748f9a2988 Mon Sep 17 00:00:00 2001 From: RodZill4 Date: Fri, 1 Nov 2019 06:21:28 +0100 Subject: [PATCH] Removed useless debug output in convolution --- addons/material_maker/engine/gen_convolution.gd | 2 -- 1 file changed, 2 deletions(-) diff --git a/addons/material_maker/engine/gen_convolution.gd b/addons/material_maker/engine/gen_convolution.gd index 143ea8c..30484c1 100644 --- a/addons/material_maker/engine/gen_convolution.gd +++ b/addons/material_maker/engine/gen_convolution.gd @@ -62,7 +62,6 @@ func _get_shader_code(uv : String, output_index : int, context : MMGenContext) - expr_values.push_back(0) errors += 1 print("No value for "+p.name) - print(p.name+" = "+str(expr_values[expr_values.size()-1])) expr_variables_x_index = expr_values.size() expr_variables.push_back("x") expr_values.push_back(0) @@ -86,7 +85,6 @@ func _get_shader_code(uv : String, output_index : int, context : MMGenContext) - coef = expr.execute(expr_values) if typeof(coef) == TYPE_INT: coef = float(coef) - print(str(dx)+", "+str(dy)+" = "+str(coef)) match convolution_params.output_type: "f": if typeof(coef) == TYPE_REAL or convolution_params.input_type == "f":