Making main screen plugins with godot4

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By patatra

Hye everyone,

I try to make a plugin on Godot4 from this link but nothing happens. Would you know if there are any differences with Godot3?

Making main screen plugins

Good Day,

:bust_in_silhouette: Reply From: sarapan_malam

I know there are many differences in Godot 4, you can see it in the documentation.
some i can show you:

.instance() => .instantiate()
make_visible(false) => _make_visible(false)
.get_icon(“Node”, “EditorIcons”) => .get_theme_icon(“Node”, “EditorIcons”)

For the rest you can see the code I made:


source code

Thank you for your answer.

patatra | 2022-09-15 15:00