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()