rdb
rdb
It's pure Python code; you could see about rewriting it based on Python's new import yourself if you'd like. If you don't want to spend effort on it, you would...
You should probably look at Python's own built-in loaders in the Python source code and use those as a reference for how to implement find_spec et al. It may be...
You probably need to use something like `importlib.util.spec_from_loader` or `importlib.util.spec_from_file_location` to implement `find_spec`. You can just use Python 3.11. It's still supported by Panda until late 2027. > If I...
I rewrote VFSImporter for the new import system. You can just drop this file into your project and use it directly if you want to try it. https://github.com/panda3d/panda3d/blob/master/direct/src/showbase/VFSImporter.py Experimental, of...
There are several issues adding up to make this happen: - [x] Exceptions are not being printed properly (fixed in b8c301164a5c2449a70d8a0381d76ee26f5482c0) - [x] The process is quitting immediately on a...
Yes, you can set that in the AndroidManifest.xml
From my experience, adding lots of things to configChanges didn't seem to have an effect on Android restarting the app, which is unfortunate since that would basically solve our problem....
I found out why my configChanges alterations weren't making a difference: a bug in the code that built a binary version of the .xml file when building the .aab that...
I don't mind an easier-to-use tagging system that can be opted into. My preference would be for the second, if we're going to be parsing text tags anyway. Also preferably...
CC'ing @CFSworks, who is working on the CMake port which aims to provide CMake integration so that the Panda3D libraries can be easily linked in by CMake users. I like...