From f2edd31ebf7cec4de098ab13d8846298c00fdf4a Mon Sep 17 00:00:00 2001 From: PersonGuyGit Date: Sun, 24 Mar 2024 12:49:50 -0600 Subject: [PATCH] Added to do items into Insert Character.gd --- .../Luke/bcirpg_game_mvp_2024_0204A/Screens/ImportCharacter.gd | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Phase2/Godot_GameCode/_MVP_Game_Demo/Luke/bcirpg_game_mvp_2024_0204A/Screens/ImportCharacter.gd b/Phase2/Godot_GameCode/_MVP_Game_Demo/Luke/bcirpg_game_mvp_2024_0204A/Screens/ImportCharacter.gd index 3a17978..fe7f4ee 100644 --- a/Phase2/Godot_GameCode/_MVP_Game_Demo/Luke/bcirpg_game_mvp_2024_0204A/Screens/ImportCharacter.gd +++ b/Phase2/Godot_GameCode/_MVP_Game_Demo/Luke/bcirpg_game_mvp_2024_0204A/Screens/ImportCharacter.gd @@ -16,6 +16,8 @@ func _ready() -> void: func _on_Button_pressed(): $FileDialog.popup() +#TO DO, Add items from the CSV files into the player character singleton. Work on formatting the CSV files from AddCharacter.gd first. + #this is going to take information from the file the player chose and put the individul parts into textboxes so it can be edited and then saved func _on_FileDialog_file_selected(path): var file = File.new()