panda3d-docs
panda3d-docs copied to clipboard
Sphinx documentation for Panda3D
All of the PandAI Google Site Links are broken. It looks like archive.org saved a lot of them though so they can be replaced with links to archive.
I figured https://github.com/panda3d/panda3d/issues/1466 would best be filed as a documentation issue. * what are the specs of the networking that's built in? * is it tcp / udp? * has...
Hello, just a quick note since I'm doing something else: I find this bit about event handlers not clear enough. https://docs.panda3d.org/1.10/python/programming/tasks-and-events/event-handlers " Finally, there are some useful utility functions for...
I wanted to change some window properties and noticed it wasn't mentioned in the manual how to do this, so I took this forum post and turned into a small...
https://discord.com/channels/524691714909274162/1057767450843824198/1211462257725145150 ``` 12:54 AM]Simulan: # get mouse data mouse_watch = base.mouseWatcherNode if mouse_watch.has_mouse(): pointer = base.win.get_pointer(0) mouseX = pointer.get_x() mouseY = pointer.get_y() ...is how I've been doing it for FPS...
I have reorganized the page putting some paragraphs under their own sections on top of removing some repeated information. I have also removed the Panda3D is not a beginners tool...
I found the code example not very explanatory. Also the input of `(Left, right, bottom, top)` is counter intuitive to me and should be on some list for when a...
The C++ page on keyboard support (https://docs.panda3d.org/1.10/cpp/programming/hardware-support/keyboard-support) has some Python code blocks that should be switched to C++ examples.
## Description This is taken from the [manual](https://docs.panda3d.org/1.10/python/programming/camera-control/perspective-lenses). The below function inputs should be swapped around as the width should be 36mm? > For instance, a 35mm camera exposes a...
The entry at https://docs.panda3d.org/1.10/python/programming/configuration/list-of-all-config-variables for the `multisamples` config variable just states: "The minimum number of samples requested." However, the real behavior is documented at https://github.com/panda3d/panda3d/blob/master/panda/src/display/config_display.cxx#L465, stating "The number of samples...