
Company News
Socket Has Acquired Secure Annex
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.
panda3d-kivy
Advanced tools
A Panda3D add-on for Kivy integration.
The aim is to make the integration of Kivy apps into a Panda3D application almost transparent. Potential uses include creating on-screen GUI, or even RTT 3D UI's.
First, import panda3d_kivy.app.App - make sure you do this before importing
any Kivy-related stuff:
from panda3d_kivy.app import App
Then, as usual in Kivy, create a subclass of this App, and use build() or the KV autoloading system to populate your widget tree:
from kivy.uix.button import Button
class Example(App):
def build(self):
return Button(text='Hello, world!')
You can then instantiate and run this app inside the __init__ of your Panda
ShowBase, after running ShowBase.__init__(self). You may want to create a
display region for your kivy app, sized according to your needs, otherwise
panda3d_kivy will automatically create one for you that will occupy the
entire window. You must then pass your ShowBase as argument to the Kivy app
instantiation, as well as your display region if applicable, and finally call
app.run() as you normally would:
from direct.showbase.ShowBase import ShowBase
class PandaApp(ShowBase):
def __init__(self):
ShowBase.__init__(self)
self.kivy_app = kivy_app = Example(self)
kivy_app.run()
# The rest of your ShowBase code here
app = PandaApp()
app.run()
VoilĂ ! You should have a working Kivy UI in your Panda application. Have fun!
FAQs
Panda3D add-on for Kivy integration.
We found that panda3d-kivy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.

Research
/Security News
Socket is tracking cloned Open VSX extensions tied to GlassWorm, with several updated from benign-looking sleepers into malware delivery vehicles.

Product
Reachability analysis for PHP is now available in experimental, helping teams identify which vulnerabilities are actually exploitable.