mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
9d15420df3
Makes for pretty paths when extending scripts: `extends "res://addons/godot_xterm/terminal.gd"` vs. `extends "res://addons/godot_xterm/nodes/terminal/terminal.gd"` Currently "res://addons/godot_xterm/pty.gd" is acutally `pty_unix.gd`. This is okay for now as the PTY node is only supported on Unix platforms. However, we will need to sort it out when adding Windows support as part of #25. Also remove the GDXterm namespace.
34 lines
684 B
Text
34 lines
684 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=[ ]
|
|
_global_script_class_icons={
|
|
|
|
}
|
|
|
|
[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( "godot_xterm", "gut" )
|
|
|
|
[rendering]
|
|
|
|
quality/filters/anisotropic_filter_level=16
|
|
quality/filters/msaa=4
|
|
environment/default_environment="res://default_env.tres"
|