You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-14 13:41:12 +00:00
Merge pull request #1738 from jackmakesthings/master
Updating demo engine.cfgs where name is missing
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
[application]
|
[application]
|
||||||
|
|
||||||
|
name="Isometric 2D + Lighting"
|
||||||
main_scene="res://map.scn"
|
main_scene="res://map.scn"
|
||||||
|
|
||||||
[input]
|
[input]
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
[application]
|
[application]
|
||||||
|
|
||||||
|
name="Truck Town"
|
||||||
main_scene="res://car_select.scn"
|
main_scene="res://car_select.scn"
|
||||||
|
|
||||||
[display]
|
[display]
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|
||||||
|
|||||||
@@ -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();
|
||||||
|
|||||||
Reference in New Issue
Block a user