Skip to content

Commit

Permalink
refactor(word.gd): 更改 Word 的默认字符为空格
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Word 的第一个字符从下划线 "_" 改为空格 " "。
  • Loading branch information
cutekibry committed Feb 13, 2024
1 parent 5a9aa5a commit 30adff0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions objects/word/word.gd
Original file line number Diff line number Diff line change
@@ -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", "(",
"*", "+", "<", ">", ")",
Expand Down

0 comments on commit 30adff0

Please sign in to comment.