project.godot 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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=4
  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/icon="res://icon.png"
  20. [editor_plugins]
  21. enabled=PoolStringArray( "custom_node", "main_screen", "material_creator", "material_import_plugin" )
  22. [rendering]
  23. quality/driver/driver_name="GLES2"
  24. vram_compression/import_etc=true
  25. vram_compression/import_etc2=false
  26. environment/default_environment="res://default_env.tres"