diff --git a/Example/SaveSystem/Scene/SaveSystem.tscn b/Example/SaveSystem/Scene/SaveSystem.tscn index 690b0eb..836889d 100644 --- a/Example/SaveSystem/Scene/SaveSystem.tscn +++ b/Example/SaveSystem/Scene/SaveSystem.tscn @@ -33,3 +33,4 @@ grow_vertical = 2 mode = 3 initial_position = 3 current_screen = 1 +visible = false diff --git a/Example/SaveSystem/Script/ViewSaveSystem.cs b/Example/SaveSystem/Script/ViewSaveSystem.cs index a95f069..76355a3 100644 --- a/Example/SaveSystem/Script/ViewSaveSystem.cs +++ b/Example/SaveSystem/Script/ViewSaveSystem.cs @@ -20,7 +20,7 @@ namespace EGFramework.Examples.Test { // TestTable(); // TestJson(); // TestDialog(); - TestMySQL(); + // TestMySQL(); } public override void _ExitTree() @@ -31,7 +31,7 @@ namespace EGFramework.Examples.Test { public void TestMySQL() { EGDapper mysqlSave = this.EGSave().Load("server=" + "localhost" + ";port=" + "3306" + ";uid=" + "root" + ";pwd=" + "root" + ";database=" + "Test3" + ";"); - bool isExist = mysqlSave.ContainsData("DataStudent",3); + bool isExist = mysqlSave.ContainsData("DataStudent", 3); GD.Print(isExist); // mysqlSave.CreateTable("DataStudent"); // DataStudent stuData = new DataStudent("Bob", 12); diff --git a/project.godot b/project.godot index b9e17df..8990a46 100644 --- a/project.godot +++ b/project.godot @@ -20,7 +20,6 @@ config/icon="res://EGFramework.svg" window/size/viewport_width=1600 window/size/viewport_height=900 -window/size/mode=3 window/subwindows/embed_subwindows=false [dotnet]