mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
Fix mixed indentation in gen_switch.gd
Mixed indentation is no longer allowed in Godot's `master` branch. This change allows Material Maker to run without script errors when using the `master` branch.
This commit is contained in:
parent
854b0c8b98
commit
7f9808a415
@ -13,9 +13,11 @@ func get_type_name():
|
||||
return "Switch"
|
||||
|
||||
func get_parameter_defs():
|
||||
return [ { name="outputs", label="Outputs", type="float", min=1, max=5, step=1, default=2 },
|
||||
return [
|
||||
{ name="outputs", label="Outputs", type="float", min=1, max=5, step=1, default=2 },
|
||||
{ name="choices", label="Choices", type="float", min=2, max=5, step=1, default=2 },
|
||||
{ name="source", label="Source", type="float", min=0, max=1, step=1, default=0 } ]
|
||||
{ name="source", label="Source", type="float", min=0, max=1, step=1, default=0 },
|
||||
]
|
||||
|
||||
func get_input_defs():
|
||||
var rv : Array = []
|
||||
|
Loading…
Reference in New Issue
Block a user