1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-15 13:51:40 +00:00

Merge pull request #1738 from jackmakesthings/master

Updating demo engine.cfgs where name is missing
This commit is contained in:
Juan Linietsky
2015-05-03 23:00:26 -03:00
5 changed files with 5 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
[application] [application]
name="Isometric 2D + Lighting"
main_scene="res://map.scn" main_scene="res://map.scn"
[input] [input]

View File

@@ -1,5 +1,6 @@
[application] [application]
name="Truck Town"
main_scene="res://car_select.scn" main_scene="res://car_select.scn"
[display] [display]

View File

@@ -1,3 +1,4 @@
[application] [application]
name="Rich Text Label (BBCode)"
main_scene="res://rich_text_bbcode.scn" main_scene="res://rich_text_bbcode.scn"

View File

@@ -1,6 +1,6 @@
[application] [application]
name="window_management" name="Window Management"
main_scene="res://window_management.scn" main_scene="res://window_management.scn"
icon="icon.png" icon="icon.png"

View File

@@ -3509,6 +3509,7 @@ EditorNode::EditorNode() {
p=file_menu->get_popup(); p=file_menu->get_popup();
p->add_item("New Scene",FILE_NEW_SCENE); p->add_item("New Scene",FILE_NEW_SCENE);
p->add_item("Open Scene..",FILE_OPEN_SCENE,KEY_MASK_CMD+KEY_O); p->add_item("Open Scene..",FILE_OPEN_SCENE,KEY_MASK_CMD+KEY_O);
p->add_separator();
p->add_item("Save Scene",FILE_SAVE_SCENE,KEY_MASK_CMD+KEY_S); p->add_item("Save Scene",FILE_SAVE_SCENE,KEY_MASK_CMD+KEY_S);
p->add_item("Save Scene As..",FILE_SAVE_AS_SCENE,KEY_MASK_SHIFT+KEY_MASK_CMD+KEY_S); p->add_item("Save Scene As..",FILE_SAVE_AS_SCENE,KEY_MASK_SHIFT+KEY_MASK_CMD+KEY_S);
p->add_separator(); p->add_separator();