mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-04 23:10:08 +01:00
This leads to code that is easier to understand and runs faster thanks to GDScript's typed instructions. The untyped declaration warning is now enabled on all projects where type hints were added. All projects currently run without any untyped declration warnings. Dodge the Creeps and Squash the Creeps demos intentionally don't use type hints to match the documentation, where type hints haven't been adopted yet (given its beginner focus).
40 lines
1.4 KiB
Plaintext
40 lines
1.4 KiB
Plaintext
; 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=5
|
|
|
|
[application]
|
|
|
|
config/name="Plugin Demos"
|
|
config/description="This contains multiple plugin demos, all placed in a project for convenience.
|
|
Due to bug 36713 you need to open the project to import the assets once, then close, then open.
|
|
|
|
This project contains 4 plugins:
|
|
|
|
* The custom node plugin shows how to create a custom node type using `add_custom_type`.
|
|
* The material import plugin shows how to make a plugin handle importing a custom file type (mtxt).
|
|
* The material creator plugin shows how to add a custom dock with some simple functionality.
|
|
* The main screen plugin is a minimal example of how to create a plugin with a main screen."
|
|
config/tags=PackedStringArray("demo", "editor", "official")
|
|
run/main_scene="res://test_scene.tscn"
|
|
config/features=PackedStringArray("4.2")
|
|
config/icon="res://icon.webp"
|
|
|
|
[debug]
|
|
|
|
gdscript/warnings/untyped_declaration=1
|
|
|
|
[editor_plugins]
|
|
|
|
enabled=PackedStringArray("res://addons/custom_node/plugin.cfg", "res://addons/main_screen/plugin.cfg", "res://addons/material_creator/plugin.cfg", "res://addons/material_import_plugin/plugin.cfg")
|
|
|
|
[rendering]
|
|
|
|
renderer/rendering_method="gl_compatibility"
|
|
renderer/rendering_method.mobile="gl_compatibility"
|