diff --git a/scripts/globals/globals.gml b/scripts/globals/globals.gml index 3ddc8649c..8b5e93f77 100644 --- a/scripts/globals/globals.gml +++ b/scripts/globals/globals.gml @@ -44,7 +44,7 @@ LATEST_VERSION = 1_18_00_0; VERSION = 1_18_05_1; SAVE_VERSION = 1_18_05_0; - VERSION_STRING = MAC? "1.18.003m" : "1.18.5.1.001"; + VERSION_STRING = MAC? "1.18.003m" : "1.18.6.001"; BUILD_NUMBER = 1_18_05_1; var _vsp = string_split(VERSION_STRING, "."); diff --git a/scripts/node_mesh_warp/node_mesh_warp.gml b/scripts/node_mesh_warp/node_mesh_warp.gml index ca0c054c8..543b2f399 100644 --- a/scripts/node_mesh_warp/node_mesh_warp.gml +++ b/scripts/node_mesh_warp/node_mesh_warp.gml @@ -229,8 +229,7 @@ function Node_Mesh_Warp(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) newInput(7, nodeValue_Bool("Full Mesh", self, false)); - newInput(8, nodeValue_Enum_Scroll("Mesh Type", self, 0, [ new scrollItem("Grid", s_node_mesh_type, 0), - new scrollItem("Custom", s_node_mesh_type, 1), ] )); + newInput(8, nodeValue_Enum_Button("Mesh Type", self, 0, [ "Grid", "Custom" ] )); newInput(9, nodeValueSeed(self));