Increase min/max range for Value input nodes. More useful when using Math nodes (inverting sign was impossible using value input in CMP before).
This commit is contained in:
@@ -31,7 +31,7 @@
|
||||
|
||||
/* **************** VALUE ******************** */
|
||||
static bNodeSocketType cmp_node_value_out[]= {
|
||||
{ SOCK_VALUE, 0, "Value", 0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f},
|
||||
{ SOCK_VALUE, 0, "Value", 0.5f, 0.0f, 0.0f, 0.0f, -10000.0f, 10000.0f},
|
||||
{ -1, 0, "" }
|
||||
};
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
|
||||
/* **************** VALUE ******************** */
|
||||
static bNodeSocketType sh_node_value_out[]= {
|
||||
{ SOCK_VALUE, 0, "Value", 0.5f, 0.0f, 0.0f, 0.0f, -100.0f, 100.0f},
|
||||
{ SOCK_VALUE, 0, "Value", 0.5f, 0.0f, 0.0f, 0.0f, -10000.0f, 10000.0f},
|
||||
{ -1, 0, "" }
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user