You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# 关卡 1 布局(字符串网格,level.gd 逐字符读取生成砖块)
|
|
# 字符 → 砖块类型: "." = 空位, "1"/"2"/"3" = 1/2/3 血砖块, "U" = 不可破坏
|
|
const LAYOUT: Array[String] = [
|
|
"1111111111",
|
|
"2222222222",
|
|
"3333333333",
|
|
"1.2.3.2.1",
|
|
]
|
|
|