This repository was archived by the owner on Feb 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix all naming convention * Fix uppercase * cache clear
- Loading branch information
Showing
139 changed files
with
1,437 additions
and
2,228 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
...end/Savor-22b/scripts/global/inventory.gd → frontend/Savor-22b/global/inventory.gd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
extends Node | ||
|
||
const inventory_scene = preload("res://scenes/inventory/inventory.tscn"); | ||
const inventory_scene = preload("res://scenes/inventory/inventory.tscn") | ||
|
||
func open_inventory(data: Dictionary): | ||
var inventory_instance := inventory_scene.instantiate() | ||
inventory_instance.data = data; | ||
inventory_instance.data = data | ||
|
||
get_tree().root.add_child(inventory_instance) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
frontend/Savor-22b/scripts/sign/Signer.gd → frontend/Savor-22b/global/signer.gd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
extends Node; | ||
extends Node | ||
|
||
var signer | ||
var signer_address | ||
|
4 changes: 1 addition & 3 deletions
4
frontend/Savor-22b/gql/svr_gql_client_2.gd → ...vor-22b/global/svr_explorer_gql_client.gd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
frontend/Savor-22b/gql/svr_gql_client.gd → frontend/Savor-22b/global/svr_gql_client.gd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
1 change: 0 additions & 1 deletion
1
frontend/Savor-22b/scenes/addressdisplay.gd → .../scenes/common/prefabs/address_display.gd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
frontend/Savor-22b/ui/asset.tscn → ...avor-22b/scenes/common/prefabs/asset.tscn
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
frontend/Savor-22b/ui/confirm_popup.tscn → .../scenes/common/prefabs/confirm_popup.tscn
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
frontend/Savor-22b/scenes/common/prefabs/done_notice_popup.gd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
extends ColorRect | ||
|
||
@onready var info_text = $VBoxContainer/Label | ||
|
||
var format_string = "%s %s" | ||
var seed_name: String | ||
|
||
func _ready(): | ||
if info_text == null: | ||
return | ||
|
||
info_text.text = format_string % [seed_name, "(이)가 수확되었습니다."] | ||
|
||
func set_seed_name(name: String): | ||
seed_name = name | ||
|
||
|
||
func _on_button_down(): | ||
queue_free() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 0 additions & 2 deletions
2
frontend/Savor-22b/ui/notice_popup.gd → ...22b/scenes/common/prefabs/notice_popup.gd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
extends ColorRect | ||
|
||
|
||
|
||
func _on_button_pressed(): | ||
queue_free() | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
frontend/Savor-22b/ui/notice_popup.tscn → ...b/scenes/common/prefabs/notice_popup.tscn
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.