Merge pull request #1738 from jackmakesthings/master
Updating demo engine.cfgs where name is missing
This commit is contained in:
commit
30f652998d
5 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
[application]
|
||||
|
||||
name="Isometric 2D + Lighting"
|
||||
main_scene="res://map.scn"
|
||||
|
||||
[input]
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[application]
|
||||
|
||||
name="Truck Town"
|
||||
main_scene="res://car_select.scn"
|
||||
|
||||
[display]
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
[application]
|
||||
|
||||
name="Rich Text Label (BBCode)"
|
||||
main_scene="res://rich_text_bbcode.scn"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[application]
|
||||
|
||||
name="window_management"
|
||||
name="Window Management"
|
||||
main_scene="res://window_management.scn"
|
||||
icon="icon.png"
|
||||
|
||||
|
|
|
@ -3509,6 +3509,7 @@ EditorNode::EditorNode() {
|
|||
p=file_menu->get_popup();
|
||||
p->add_item("New Scene",FILE_NEW_SCENE);
|
||||
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 As..",FILE_SAVE_AS_SCENE,KEY_MASK_SHIFT+KEY_MASK_CMD+KEY_S);
|
||||
p->add_separator();
|
||||
|
|
Loading…
Reference in a new issue