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
if (draw_layericon(2, x1 + 162 - !realvolume-realstereo * 10, y1 + 8, condstr(language != 1, "Select all note blocks in this layer\n(Click and drag to select multiple; click again to deselect)", "选择本层所有方块\n(________)"), 0, 0)) {
1427
+
if (draw_layericon(2, x1 + 162 - !realvolume-realstereo * 10, y1 + 8, condstr(language != 1, "Select all note blocks in this layer\n(Click and drag to select multiple; click again to deselect)", "选择本层所有方块\n(拖拽可批量选择,再次点选取消选择)"), 0, 0)) {
1428
1428
playing = 0
1429
1429
1430
1430
// TODO: replace with array_contains() if we ever upgrade GameMaker...
@@ -1439,22 +1439,22 @@ function control_draw() {
1439
1439
}
1440
1440
}
1441
1441
// Add layer
1442
-
if (draw_layericon(3, x1 + 180 - !realvolume-realstereo * 10, y1 + 8, condstr(language != 1, "Add empty layer here\n(Click and drag to add multiple layers)", "新建层\n(________)"), 0, 0)) {
1442
+
if (draw_layericon(3, x1 + 180 - !realvolume-realstereo * 10, y1 + 8, condstr(language != 1, "Add empty layer here\n(Click and drag to add multiple layers)", "新建层\n(拖拽可批量添加)"), 0, 0)) {
1443
1443
playing = 0
1444
1444
add_layer(startb + b, false)
1445
1445
}
1446
1446
// Remove layer
1447
-
if (draw_layericon(4, x1 + 198 - !realvolume-realstereo * 10, y1 + 8, condstr(language != 1, "Remove this layer\n(Click and drag to remove multiple layers)", "删除层\n(________)"), 0, 0)) {
1447
+
if (draw_layericon(4, x1 + 198 - !realvolume-realstereo * 10, y1 + 8, condstr(language != 1, "Remove this layer\n(Click and drag to remove multiple layers)", "删除层\n(拖拽可批量删除)"), 0, 0)) {
1448
1448
playing = 0
1449
1449
remove_layer(startb + b, false)
1450
1450
}
1451
1451
// Shift layer up
1452
-
if ((startb + b > 0) && draw_layericon(5, x1 + 216 - !realvolume-realstereo * 10, y1 + 8, condstr(language != 1, "Shift layer up\n(Click and drag to shift multiple layers)", "上移本层\n(________)"), 0, 0)) {
1452
+
if ((startb + b > 0) && draw_layericon(5, x1 + 216 - !realvolume-realstereo * 10, y1 + 8, condstr(language != 1, "Shift layer up\n(Click and drag to shift multiple layers)", "上移本层\n(拖拽可上移多层)"), 0, 0)) {
1453
1453
playing = 0
1454
1454
shift_layers(startb + b, startb + b - 1, false)
1455
1455
}
1456
1456
// Shift layer down
1457
-
if (draw_layericon(6, x1 + 234 - !realvolume-realstereo * 10 - (startb + b = 0) * 8, y1 + 8, condstr(language != 1, "Shift layer down\n(Click and drag to shift multiple layers)", "下移本层\n(________)"), 0, 0)) {
1457
+
if (draw_layericon(6, x1 + 234 - !realvolume-realstereo * 10 - (startb + b = 0) * 8, y1 + 8, condstr(language != 1, "Shift layer down\n(Click and drag to shift multiple layers)", "下移本层\n(拖拽可下移多层)"), 0, 0)) {
0 commit comments