From 4cc0d0a8ffbee168818b9e0ab6eebb30ce99e88e Mon Sep 17 00:00:00 2001 From: PersonGuyGit Date: Sun, 23 Apr 2023 13:00:08 -0600 Subject: [PATCH] Added some corrections to the SQLite CRUD commands, as the comments were off for some of them. --- .../ToolsetProjectTemplate/.godot/editor/filesystem_cache8 | 2 +- .../ToolsetProjectTemplate/.godot/editor/filesystem_update4 | 3 +-- .../.godot/editor/script_editor_cache.cfg | 6 +++--- .../ToolsetProjectTemplate/GenresSubstitution/genre_sub.gd | 2 +- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Phase2/Godot_Toolset/CodeSandboxes/ToolsetProjectTemplate/.godot/editor/filesystem_cache8 b/Phase2/Godot_Toolset/CodeSandboxes/ToolsetProjectTemplate/.godot/editor/filesystem_cache8 index f400c51..da99e67 100644 --- a/Phase2/Godot_Toolset/CodeSandboxes/ToolsetProjectTemplate/.godot/editor/filesystem_cache8 +++ b/Phase2/Godot_Toolset/CodeSandboxes/ToolsetProjectTemplate/.godot/editor/filesystem_cache8 @@ -1,5 +1,5 @@ 2a60927148abd1d33b818b535e306557 -::res://::1682269516 +::res://::1682270223 default_env.tres::Environment::-1::1680461469::0::1::::<><>:: icon.png::CompressedTexture2D::1663579034843721578::1659896126::1681665020::1::::<><>:: README.txt::TextFile::-1::1679251181::0::1::::<><>:: diff --git a/Phase2/Godot_Toolset/CodeSandboxes/ToolsetProjectTemplate/.godot/editor/filesystem_update4 b/Phase2/Godot_Toolset/CodeSandboxes/ToolsetProjectTemplate/.godot/editor/filesystem_update4 index 3a56f96..912b6f1 100644 --- a/Phase2/Godot_Toolset/CodeSandboxes/ToolsetProjectTemplate/.godot/editor/filesystem_update4 +++ b/Phase2/Godot_Toolset/CodeSandboxes/ToolsetProjectTemplate/.godot/editor/filesystem_update4 @@ -1,3 +1,2 @@ -res://screens/MainMenu.tscn -res://GenresSubstitution/genre_sub.gd res://GenresSubstitution/TestDB.tscn +res://GenresSubstitution/genre_sub.gd diff --git a/Phase2/Godot_Toolset/CodeSandboxes/ToolsetProjectTemplate/.godot/editor/script_editor_cache.cfg b/Phase2/Godot_Toolset/CodeSandboxes/ToolsetProjectTemplate/.godot/editor/script_editor_cache.cfg index 78f77fd..2ed3dea 100644 --- a/Phase2/Godot_Toolset/CodeSandboxes/ToolsetProjectTemplate/.godot/editor/script_editor_cache.cfg +++ b/Phase2/Godot_Toolset/CodeSandboxes/ToolsetProjectTemplate/.godot/editor/script_editor_cache.cfg @@ -3,11 +3,11 @@ state={ "bookmarks": PackedInt32Array(), "breakpoints": PackedInt32Array(), -"column": 0, +"column": 25, "folded_lines": Array[int]([]), "h_scroll_position": 0, -"row": 140, -"scroll_position": 9.0, +"row": 104, +"scroll_position": 87.5, "selection": false, "syntax_highlighter": "GDScript" } diff --git a/Phase2/Godot_Toolset/CodeSandboxes/ToolsetProjectTemplate/GenresSubstitution/genre_sub.gd b/Phase2/Godot_Toolset/CodeSandboxes/ToolsetProjectTemplate/GenresSubstitution/genre_sub.gd index 3e42f37..ec0b1b7 100644 --- a/Phase2/Godot_Toolset/CodeSandboxes/ToolsetProjectTemplate/GenresSubstitution/genre_sub.gd +++ b/Phase2/Godot_Toolset/CodeSandboxes/ToolsetProjectTemplate/GenresSubstitution/genre_sub.gd @@ -102,7 +102,7 @@ func updateItemByID(id, feedName): # This will update an Collection's Item Alias record under your desired ID. # Example of how to use updateCollectionAliasByID -# updateItemByID(1, "Electric Guitar") +# updateCollectionAliasByID(1, "Electric Guitar") func updateCollectionAliasByID(id, feedName): db.open_db() var tableName = "collection"