The Godot Q&A is currently undergoing maintenance!

Your ability to ask and answer questions is temporarily disabled. You can browse existing threads in read-only mode.

We are working on bringing this community platform back to its full functionality, stay tuned for updates.

godotengine.org | Twitter

+1 vote

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.

in Engine by (753 points)

1 Answer

+1 vote
Best answer

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 https://github.com/GodotNativeTools/godot-cpp/issues/378 )

by (29,360 points)
selected by
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.