From 30adff0245109a81d7836a1a64bc84e92eb2b70c Mon Sep 17 00:00:00 2001 From: cutekibry Date: Wed, 14 Feb 2024 01:55:20 +0800 Subject: [PATCH] =?UTF-8?q?refactor(word.gd):=20=E6=9B=B4=E6=94=B9=20Word?= =?UTF-8?q?=20=E7=9A=84=E9=BB=98=E8=AE=A4=E5=AD=97=E7=AC=A6=E4=B8=BA?= =?UTF-8?q?=E7=A9=BA=E6=A0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit BREAKING CHANGE: Word 的第一个字符从下划线 "_" 改为空格 " "。 --- objects/word/word.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/objects/word/word.gd b/objects/word/word.gd index 74ba764..5ff08ee 100644 --- a/objects/word/word.gd +++ b/objects/word/word.gd @@ -1,12 +1,12 @@ extends AnimatedSprite2D -@export var text_id := 1 +@export var text_id := 0 @export var color := Color.BLACK const STEP := 30 -const LETTER_NAME = ["_", "=", "P", "b", "D", +const LETTER_NAME = [" ", "=", "P", "b", "D", "I1", "I2", "I3", "I4", "I5", "R", "Q", "d", "q", "(", "*", "+", "<", ">", ")",