Pixel-Composer/scripts/node_fn_smoothstep/node_fn_smoothstep.gml

45 lines
1.2 KiB
Plaintext
Raw Normal View History

2024-05-31 12:51:14 +02:00
function Node_Fn_SmoothStep(_x, _y, _group = noone) : Node_Fn(_x, _y, _group) constructor {
name = "SmoothStep";
time_based = false;
2024-08-08 06:57:51 +02:00
inputs[inl + 0] = nodeValue_Float("Value", self, 0 )
2024-05-31 12:51:14 +02:00
.setVisible(true, true);
2024-08-08 06:57:51 +02:00
inputs[inl + 1] = nodeValue_Enum_Scroll("Type", self, 0 , [ "Cubic poly", "Quadratic rat", "Cubic rat", "Cosine" ] );
2024-05-31 12:51:14 +02:00
array_append(input_display_list, [
["Value", false], inl + 1, inl + 0,
]);
type = 0;
value = 0;
static __fnEval = function(_x = 0) {
switch(type) {
case 0 : return _x * _x * (3.0 - 2.0 * _x);
case 1 : return _x * _x / (2.0 * _x * _x - 2.0 * _x + 1.0);
case 2 : return _x * _x * _x / (3.0 * _x * _x - 3.0 * _x + 1.0);
case 3 : return 0.5 - 0.5 * cos(pi * _x);
}
return _x;
}
static refreshDisplayX = function(i) {
2024-08-08 06:57:51 +02:00
var _fr = inputs[inl + 0].value_from;
2024-05-31 12:51:14 +02:00
if(_fr != noone && is_instanceof(_fr.node, Node_Fn))
return _fr.node.getDisplayX(i);
return i / graph_res;
}
static processData = function(_output, _data, _output_index, _array_index = 0) { #region
value = _data[inl + 0];
type = _data[inl + 1];
var val = __fnEval(value);
text_display = val;
return val;
} #endregion
}