- [Line] Now accept array of paths (not to be confused with path array).

This commit is contained in:
Tanasart 2024-06-20 12:28:19 +07:00
parent b5dac67f4d
commit 527138613a
2 changed files with 4 additions and 5 deletions

View file

@ -36,10 +36,10 @@
globalvar VERSION, SAVE_VERSION, VERSION_STRING, BUILD_NUMBER, LATEST_VERSION;
LATEST_VERSION = 11700;
VERSION = 11740;
VERSION = 11742;
SAVE_VERSION = 11700;
VERSION_STRING = "1.17.4.1";
BUILD_NUMBER = 11740;
VERSION_STRING = "1.17.4.2";
BUILD_NUMBER = 11742;
globalvar HOTKEYS, HOTKEY_CONTEXT;
HOTKEYS = ds_map_create();

View file

@ -22,8 +22,7 @@ function Node_Line(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) cons
.setDisplay(VALUE_DISPLAY.rotation);
inputs[| 7] = nodeValue("Path", self, JUNCTION_CONNECT.input, VALUE_TYPE.pathnode, noone, "Draw line along path.")
.setVisible(true, true)
.setArrayDepth(1);
.setVisible(true, true);
inputs[| 8] = nodeValue("Range", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, [0, 1], "Range of the path to draw.")
.setDisplay(VALUE_DISPLAY.slider_range);