mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-04 15:00:09 +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).
25 lines
964 B
GDScript
25 lines
964 B
GDScript
# A simple (and silly) material resource plugin. Allows you to make a really simple material
|
|
# from a custom dock, that you can save and load, and apply to selected MeshInstances.
|
|
#
|
|
# SPECIAL NOTE: This technically should be using EditorImportPlugin and EditorExportPlugin
|
|
# to handle the input and output of the silly material. However, currently you cannot export
|
|
# custom resources in Godot, so instead we're using JSON files instead.
|
|
#
|
|
# This example should be replaced when EditorImportPlugin and EditorExportPlugin are both
|
|
# fully working and you can save custom resources.
|
|
|
|
@tool
|
|
extends EditorPlugin
|
|
|
|
var io_material_dialog: Panel
|
|
|
|
|
|
func _enter_tree() -> void:
|
|
io_material_dialog = preload("res://addons/material_creator/material_dock.tscn").instantiate()
|
|
io_material_dialog.editor_interface = get_editor_interface()
|
|
add_control_to_dock(DOCK_SLOT_LEFT_UL, io_material_dialog)
|
|
|
|
|
|
func _exit_tree() -> void:
|
|
remove_control_from_docks(io_material_dialog)
|