mirror of
https://github.com/godotengine/godot.git
synced 2024-12-03 09:52:18 +08:00
Merge pull request #2652 from firefly2442/fix-icons
Fix icons (default location and in demos)
This commit is contained in:
commit
6aa95e77f3
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
name="Fog of War"
|
name="Fog of War"
|
||||||
main_scene="res://fog.scn"
|
main_scene="res://fog.scn"
|
||||||
icon="icon.png"
|
icon="res://icon.png"
|
||||||
|
|
||||||
[input]
|
[input]
|
||||||
|
|
||||||
|
@ -2,4 +2,4 @@
|
|||||||
|
|
||||||
name="polygon_path_finder_demo"
|
name="polygon_path_finder_demo"
|
||||||
main_scene="res://new_scene_poly_with_holes.scn"
|
main_scene="res://new_scene_poly_with_holes.scn"
|
||||||
icon="icon.png"
|
icon="res://icon.png"
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
name="Input Mapping GUI"
|
name="Input Mapping GUI"
|
||||||
main_scene="res://controls.scn"
|
main_scene="res://controls.scn"
|
||||||
icon="icon.png"
|
|
||||||
|
|
||||||
[display]
|
[display]
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
name="Tween Demo"
|
name="Tween Demo"
|
||||||
main_scene="res://main.xml"
|
main_scene="res://main.xml"
|
||||||
icon="icon.png"
|
icon="res://icon.png"
|
||||||
target_fps=60
|
target_fps=60
|
||||||
|
|
||||||
[display]
|
[display]
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
name="Window Management"
|
name="Window Management"
|
||||||
main_scene="res://window_management.scn"
|
main_scene="res://window_management.scn"
|
||||||
icon="icon.png"
|
icon="res://icon.png"
|
||||||
|
|
||||||
[display]
|
[display]
|
||||||
|
|
||||||
|
@ -193,7 +193,7 @@ class NewProjectDialog : public ConfirmationDialog {
|
|||||||
f->store_line("\n");
|
f->store_line("\n");
|
||||||
f->store_line("[application]");
|
f->store_line("[application]");
|
||||||
f->store_line("name=\""+project_name->get_text()+"\"");
|
f->store_line("name=\""+project_name->get_text()+"\"");
|
||||||
f->store_line("icon=\"icon.png\"");
|
f->store_line("icon=\"res://icon.png\"");
|
||||||
|
|
||||||
memdelete(f);
|
memdelete(f);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user