godot-cpp icon indicating copy to clipboard operation
godot-cpp copied to clipboard

Bug: Editor no longer hides internal classes in node creation dialog

Open CycloneRing opened this issue 3 months ago • 0 comments

Godot version

4.5.stable

godot-cpp version

4.5.stable

System information

Windows 10

Issue description

In godot 4.3 when we used register_internal_class to register a class it was not getting exposed and it was not possible to create or view it in new node creation dialog. In Godot 4.5 it doesn't matter if class is registered with internal or regular p_exposed doesn't seem working.

Steps to reproduce

  1. Create a class
  2. Register using register_internal_class
ClassDB::register_internal_class<MyNode>();
  1. Open editor, Open add node dialog and search MyNode and it will be there.
Image

Minimal reproduction project

No Required

CycloneRing avatar Sep 23 '25 03:09 CycloneRing