How to get all methods (and corresponding Object) of an Object?

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

I’m interested in making something similar to the call method track in the Animation Player node, where all methods that can be called by a node are displayed along with the object that the method corresponds to. I’ve tried using the get_method_list() method, but it didn’t seem to have a lot of relevant information about the node that the method came from (I’m not too sure what the “id” value in the methods are, though). If anyone has any idea how to get that information, it would be greatly appreciated. Thanks!

Yes, get_method_list() returns list of methods with signatures.
What kind of “relevant information” do you need specifically?

sash-rc | 2021-09-09 22:23