diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2020-07-20 12:26:48 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2020-07-20 12:26:48 +0200 |
commit | 89723ca94bd21f1ae14592a682e9c0e5c5f04a74 (patch) | |
tree | 7b5c67f9d05f253abc961c901336780755543d6d /project.godot | |
parent | f3c455fbfb8b28b095c161eb7769ed92f1acb862 (diff) | |
download | godot-hexgrid-89723ca94bd21f1ae14592a682e9c0e5c5f04a74.zip godot-hexgrid-89723ca94bd21f1ae14592a682e9c0e5c5f04a74.tar.gz |
move demo files into subdir demo
Diffstat (limited to 'project.godot')
-rw-r--r-- | project.godot | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/project.godot b/project.godot index 657540a..7f0176a 100644 --- a/project.godot +++ b/project.godot @@ -12,7 +12,7 @@ _global_script_classes=[ { "base": "Tile", "class": "Hex", "language": "GDScript", -"path": "res://Hex.gd" +"path": "res://demo/Hex.gd" }, { "base": "Node", "class": "HexBoard", @@ -32,7 +32,7 @@ _global_script_classes=[ { "base": "Piece", "class": "Unit", "language": "GDScript", -"path": "res://Unit.gd" +"path": "res://demo/Unit.gd" } ] _global_script_class_icons={ "Hex": "res://godot/Tile.png", @@ -45,7 +45,7 @@ _global_script_class_icons={ [application] config/name="hexgrid_demo" -run/main_scene="res://Main.tscn" +run/main_scene="res://demo/Main.tscn" config/icon="res://icon.png" [display] |