mirror of
https://github.com/DigvijaysinhGohil/Godot-Shader-Lib.git
synced 2025-01-09 02:43:25 +08:00
Artistic nodes finalized
This commit is contained in:
parent
9d7cf5e9e9
commit
c51785f3b5
@ -35,7 +35,7 @@ func _get_input_port_default_value(port: int) -> Variant:
|
|||||||
1:
|
1:
|
||||||
return 1.0
|
return 1.0
|
||||||
_:
|
_:
|
||||||
return null
|
return Vector3(1.0, 1.0, 1.0)
|
||||||
|
|
||||||
func _get_output_port_count() -> int:
|
func _get_output_port_count() -> int:
|
||||||
return 1
|
return 1
|
||||||
|
@ -35,7 +35,7 @@ func _get_input_port_default_value(port: int) -> Variant:
|
|||||||
1:
|
1:
|
||||||
return 0.0
|
return 0.0
|
||||||
_:
|
_:
|
||||||
return null
|
return Vector3(1.0, 1.0, 1.0)
|
||||||
|
|
||||||
func _get_output_port_count() -> int:
|
func _get_output_port_count() -> int:
|
||||||
return 1
|
return 1
|
||||||
|
@ -43,7 +43,7 @@ func _get_input_port_default_value(port: int) -> Variant:
|
|||||||
3, 4:
|
3, 4:
|
||||||
return 0.0
|
return 0.0
|
||||||
_:
|
_:
|
||||||
return null
|
return Vector3(1.0, 1.0, 1.0)
|
||||||
|
|
||||||
func _get_output_port_count() -> int:
|
func _get_output_port_count() -> int:
|
||||||
return 1
|
return 1
|
||||||
|
@ -34,7 +34,7 @@ func _get_input_port_type(port: int) -> PortType:
|
|||||||
func _get_input_port_default_value(port: int) -> Variant:
|
func _get_input_port_default_value(port: int) -> Variant:
|
||||||
match port:
|
match port:
|
||||||
0:
|
0:
|
||||||
return null
|
return Vector3(1.0, 1.0, 1.0)
|
||||||
_:
|
_:
|
||||||
return 1.0
|
return 1.0
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ func _get_input_port_default_value(port: int) -> Variant:
|
|||||||
1, 2:
|
1, 2:
|
||||||
return 0.0
|
return 0.0
|
||||||
_:
|
_:
|
||||||
return null
|
return Vector3(1.0, 1.0, 1.0)
|
||||||
|
|
||||||
func _get_output_port_count() -> int:
|
func _get_output_port_count() -> int:
|
||||||
return 1
|
return 1
|
||||||
|
@ -36,12 +36,12 @@ func _get_input_port_type(port: int) -> PortType:
|
|||||||
|
|
||||||
func _get_input_port_default_value(port: int) -> Variant:
|
func _get_input_port_default_value(port: int) -> Variant:
|
||||||
match port:
|
match port:
|
||||||
|
0:
|
||||||
|
return Vector3(1.0, 1.0, 1.0)
|
||||||
1:
|
1:
|
||||||
return Vector3(0.0, 0.0, 0.0)
|
return Vector3(0.0, 0.0, 0.0)
|
||||||
2, 3:
|
|
||||||
return 0.0
|
|
||||||
_:
|
_:
|
||||||
return null
|
return 0.0
|
||||||
|
|
||||||
func _get_output_port_count() -> int:
|
func _get_output_port_count() -> int:
|
||||||
return 1
|
return 1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user