Accessing panda3d.core NodePath source code

Hello All,

I’m trying to understand some NodePath methods, specifically NodePath.reparentTo, but I’m having trouble accessing the pandas.core file.

Can anyone tell me how to find the source code for pandas.core, specifically NodePath?

Thank You!

The source is in C++ and you can look at them here:



The reparent_to() method in particular takes the NodePath and inserts it as child of a new parent, which consists of inheriting all transformations from that new parent and so on…

Hope that helps

Thank you, it certainly does!