Setup RenderPipeline, compile my own rpcore module

I heard is RenderPipeline closely integrated into Panda3D, and the latest build version is not required. I installed the RenderPipeline, and it works. However, I was embarrassed by the lack of a dialog to compile my own rpcore module. If I understand correctly, do they come with a panda? If ybelieve this test.

def check_panda_rplight():
    """ Checks whether Panda3D provides the rpcore native module. """

    try:
        from panda3d import _rplight
        return True
    except ImportError:
        pass

    return False

Yes, rpcore is now shipped with Panda, under the panda3d._rplight module. Recompiling Panda will recompile rpcore.

1 Like