mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-15 06:00:12 +00:00
ef9570c315
This recreates pull request #2192
8 lines
193 B
Python
8 lines
193 B
Python
import pybullet as p
|
|
p.connect(p.DIRECT)
|
|
p.loadPlugin("eglRendererPlugin")
|
|
p.loadSDF("newsdf.sdf")
|
|
while (1):
|
|
p.getCameraImage(320, 240, flags=p.ER_NO_SEGMENTATION_MASK)
|
|
p.stepSimulation()
|