project.godot 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. ; Engine configuration file.
  2. ; It's best edited using the editor UI and not directly,
  3. ; since the parameters that go here are not all obvious.
  4. ;
  5. ; Format:
  6. ; [section] ; section goes between []
  7. ; param=value ; assign values to parameters
  8. config_version=5
  9. [application]
  10. config/name="Plugin Demos"
  11. config/description="This contains multiple plugin demos, all placed in a project for convenience.
  12. Due to bug 36713 you need to open the project to import the assets once, then close, then open.
  13. This project contains 4 plugins:
  14. * The custom node plugin shows how to create a custom node type using `add_custom_type`.
  15. * The material import plugin shows how to make a plugin handle importing a custom file type (mtxt).
  16. * The material creator plugin shows how to add a custom dock with some simple functionality.
  17. * The main screen plugin is a minimal example of how to create a plugin with a main screen."
  18. run/main_scene="res://test_scene.tscn"
  19. config/features=PackedStringArray("4.0")
  20. config/icon="res://icon.png"
  21. [editor_plugins]
  22. enabled=PackedStringArray("custom_node", "main_screen", "material_creator", "material_import_plugin")
  23. [rendering]
  24. quality/driver/driver_name="GLES2"
  25. vram_compression/import_etc=true
  26. vram_compression/import_etc2=false
  27. environment/default_environment="res://default_env.tres"