You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 12, 2022. It is now read-only.
this could be achieved by recursively adding all parent functions (unless it was already added, child functions should have priority...) to the current object (and then adding all functions of that parent as well...)
This is currently implemented in this file via the callUp function
For example Godot has a class Called MeshInterface which inherits
GeometryInstance which inherits VisualInstance which.... Spatial....Node...Object etc.
when I have a MeshInstance object it should be possible to call the getNode function from Node directly on the mesh instance like this:
this could be achieved by recursively adding all parent functions (unless it was already added, child functions should have priority...) to the current object (and then adding all functions of that parent as well...)
This is currently implemented in this file via the callUp function
godot-zig/src/main.zig
Lines 15 to 26 in 30ffc92
Obvious downside however that you can't do this with your current class.