Files
Hugo Locurcio b4eff8de9d Update all demos for Godot 4.6, fix Global Illumination demo
- Rebake lightmaps in Global Illumination demo with supersampling
  to improve quality.
- Increase SDFGI quality in the Global Illumination demo
  (slightly more demanding, but better matches the quality standards
  of 2026).

All demos had Project > Tools > Upgrade Project Files ran on them
with 4.6.stable (4.6.stable.mono for demos in the `mono/` folder).
2026-02-10 23:56:35 +01:00
..

Plugin Demos

This contains multiple plugin demos, all placed in a project for convenience.

Due to issue #36713, you need to open the project to import the assets once, then close, then open.

See the documentation on editor plugins for more information.

Language: GDScript

Renderer: Compatibility

Check out this demo on the asset library: https://godotengine.org/asset-library/asset/2802

How does it work?

This project contains 4 plugins:

  • The custom node plugin shows how to create a custom node type using add_custom_type. More info.

  • The main screen plugin is a minimal example of how to create a plugin with a main screen. More info.

  • The material creator plugin shows how to add a custom dock with some simple functionality, and shows how to create a custom Resource type with custom loading, saving, importing, and exporting logic, including editor integrations. More info.

  • The simple import plugin shows how to make a simple plugin handle importing a custom file type (mtxt). More info.

To use these plugins in another project, copy any of these folders to the addons/ folder in a Godot project, and then enable them in the project settings menu.

For example, the path would look like: addons/custom_node

Plugins can be distributed and installed from the UI. If you make a ZIP archive that contains the folder, Godot will recognize it as a plugin and will allow you to install it.

This can be done via the terminal: zip -r custom_node.zip custom_node/*

Screenshots

Heart Custom Node

Main Screen Plugin

Material Creator Plugin

Simple Import Plugin