mirror of
https://github.com/bulletphysics/bullet3.git
synced 2026-09-03 17:08:35 +00:00
10 lines
254 B
Python
10 lines
254 B
Python
import pybullet as p
|
|
p.connect(p.GUI)
|
|
plugin = p.loadPlugin("d:/develop/bullet3/bin/pybullet_testplugin_vs2010_x64_debug.dll",
|
|
"_testPlugin")
|
|
print("plugin=", plugin)
|
|
p.loadURDF("r2d2.urdf")
|
|
|
|
while (1):
|
|
p.getCameraImage(320, 200)
|