Skip to content

Commit

Permalink
style: 删除不使用的调试输出
Browse files Browse the repository at this point in the history
  • Loading branch information
cutekibry committed Feb 11, 2024
1 parent 772943c commit c7ab8cf
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion levels/base_level/base_level.gd
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ func _on_card_put() -> void:
for i in range(len(block_array)):
if i != 0:
if ExprValidator.is_smile(expr[i-1]+expr[i]):
print(expr[i-1]+expr[i])
# print(expr[i-1]+expr[i])
block_array[i-1].set_color(ImageLib.PALETTE["golden"])
block_array[i].set_color(ImageLib.PALETTE["golden"])
Expand Down
2 changes: 0 additions & 2 deletions objects/card/card.gd
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,6 @@ func set_word(value: String) -> void:
$CardBackSprite, 1, 3, 1, "res://objects/card/card%d.png",
ImageLib.PALETTE["lightblue"], ImageLib.PALETTE[card_type]
)
print($CardBackSprite.animation)
print($CardBackSprite.sprite_frames.animations)


func get_word() -> String:
Expand Down

0 comments on commit c7ab8cf

Please sign in to comment.