You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Fix inconsistent use of title case throughout the interface
- Add ellipses on the macros that open a new window
- Implement menu item and keyboard shortcut for the 'Set pitch' macro
- Improved look of warning text for Stagger and Tremolo to make it clearer
- Fixed Volume LFO being called Velocity/Volume in different places
- Reworded some stuff here and there to make it clearer
if (draw_checkbox(x1 + 170, y1 + 300, sch_exp_velocity, "Enable Velocity", "Whether to position the note blocks differently due to their velocity.\nIt's recommended that each layer's velocity should be the same when polyphony is higher than 1.")) sch_exp_velocity=!sch_exp_velocity
96
+
if (draw_checkbox(x1 + 170, y1 + 300, sch_exp_velocity, "Enable velocity", "Whether to position the note blocks differently due to their velocity.\nIt's recommended that each layer's velocity should be the same when polyphony is higher than 1.")) sch_exp_velocity=!sch_exp_velocity
97
97
if sch_exp_velocity = 1 var schwidth = 35else schwidth = 1
98
98
if sch_exp_polyphony > 1 && sch_exp_velocity = 0 var schwidth = 3
99
-
if (draw_checkbox(x1 + 170, y1 + 320, sch_exp_circuitry, "Export Circuitry", "Whether to export the ground, repeaters, and redstone.")) sch_exp_circuitry=!sch_exp_circuitry
99
+
if (draw_checkbox(x1 + 170, y1 + 320, sch_exp_circuitry, "Export circuitry", "Whether to export the ground, repeaters, and redstone.")) sch_exp_circuitry=!sch_exp_circuitry
Copy file name to clipboardExpand all lines: scripts/draw_window_datapack_export/draw_window_datapack_export.gml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -149,7 +149,7 @@ if (selected_tab_dat = 0) {
149
149
if (draw_checkbox(x1 + 33, y1 + 55, dat_visualizer, "Enable visualizer", "NOTE: Please use a VOID world as falling blocks will pile up!")) dat_visualizer=!dat_visualizer
0 commit comments