Set Project Up
parent
37fd97e982
commit
1a248b36a6
|
@ -4,6 +4,7 @@
|
|||
|
||||
# Godot-specific ignores
|
||||
.import/
|
||||
addons/
|
||||
export.cfg
|
||||
export_presets.cfg
|
||||
|
||||
|
|
|
@ -8,11 +8,35 @@
|
|||
|
||||
config_version=4
|
||||
|
||||
_global_script_classes=[ {
|
||||
"base": "",
|
||||
"class": "GitAPI",
|
||||
"language": "NativeScript",
|
||||
"path": "res://addons/godot-git-plugin/git_api.gdns"
|
||||
} ]
|
||||
_global_script_class_icons={
|
||||
"GitAPI": ""
|
||||
}
|
||||
|
||||
[application]
|
||||
|
||||
config/name="LD54"
|
||||
config/icon="res://icon.png"
|
||||
|
||||
[display]
|
||||
|
||||
window/size/width=160
|
||||
window/size/height=90
|
||||
|
||||
[editor]
|
||||
|
||||
version_control_autoload_on_startup=true
|
||||
version_control_plugin_name="GitAPI"
|
||||
|
||||
[gdnative]
|
||||
|
||||
singletons=[ "res://addons/godot-git-plugin/git_api.gdnlib" ]
|
||||
|
||||
[gui]
|
||||
|
||||
common/drop_mouse_on_gui_input_disabled=true
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
extends Node
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
[gd_scene format=2]
|
||||
|
||||
[node name="Menu" type="Node"]
|
||||
|
||||
[node name="View" type="Node2D" parent="."]
|
||||
|
||||
[node name="UI" type="Control" parent="."]
|
||||
margin_right = 40.0
|
||||
margin_bottom = 40.0
|
Loading…
Reference in New Issue