![]() |
Attention | Topic was automatically imported from the old Question2Answer platform. |
![]() |
Asked By | supper_raptor |
I have made a gdnative plugin for my bot but its preformance is not show in the profiler.
The profiler is not including gdnative plugins.
![]() |
Attention | Topic was automatically imported from the old Question2Answer platform. |
![]() |
Asked By | supper_raptor |
I have made a gdnative plugin for my bot but its preformance is not show in the profiler.
The profiler is not including gdnative plugins.
![]() |
Reply From: | Zylann |
The profiler shows GDScript functions automatically because that’s what the GDScript module does.
In C++ NativeScripts (assuming that’s what you use), this kind of thing is not automatic, and I believe Godot doesn’t do that automatically on registered functions either.
You can, however, use the GodotProfiling helper: https://github.com/GodotNativeTools/godot-cpp/blob/master/include/core/GodotProfiling.hpp
And place GODOT_PROFILING_FUNCTION
at the beginning of your function.
(which can be improved Compute profiling signatures at compile-time · Issue #378 · godotengine/godot-cpp · GitHub )