mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
d784b53e25
Commit GUT directly to the git repo and remove gd-plug as it is no longer required to install GUT. Modify GUT to be used by command-line only. For example: ``` cp test/.gutconfig.ci.json .gutconfig.json godot --no-window -s addons/gut/gut_cmdln.gd ```
45 lines
951 B
Text
45 lines
951 B
Text
; Engine configuration file.
|
|
; It's best edited using the editor UI and not directly,
|
|
; since the parameters that go here are not all obvious.
|
|
;
|
|
; Format:
|
|
; [section] ; section goes between []
|
|
; param=value ; assign values to parameters
|
|
|
|
config_version=4
|
|
|
|
_global_script_classes=[ {
|
|
"base": "Reference",
|
|
"class": "GutHookScript",
|
|
"language": "GDScript",
|
|
"path": "res://addons/gut/hook_script.gd"
|
|
}, {
|
|
"base": "Node",
|
|
"class": "GutTest",
|
|
"language": "GDScript",
|
|
"path": "res://addons/gut/test.gd"
|
|
} ]
|
|
_global_script_class_icons={
|
|
"GutHookScript": "",
|
|
"GutTest": ""
|
|
}
|
|
|
|
[application]
|
|
|
|
config/name="Godot Xterm"
|
|
run/main_scene="res://examples/menu/menu.tscn"
|
|
config/icon="res://icon.png"
|
|
|
|
[display]
|
|
|
|
window/vsync/use_vsync=false
|
|
|
|
[editor_plugins]
|
|
|
|
enabled=PoolStringArray( "res://addons/godot_xterm/plugin.cfg" )
|
|
|
|
[rendering]
|
|
|
|
quality/filters/anisotropic_filter_level=16
|
|
quality/filters/msaa=4
|
|
environment/default_environment="res://default_env.tres"
|