summaryrefslogtreecommitdiff
path: root/examples/pybullet/gym/pybullet_utils/examples/combined.py
blob: 3a7538442c9f8b4279492aa603469cccdc74d31b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import pybullet as p
p.connect(p.GUI)
p.loadURDF("combined.urdf", useFixedBase=True)



#for j in range (p.getNumJoints(0)):
#	p.setJointMotorControl2(0,j,p.VELOCITY_CONTROL,targetVelocity=0.1)
p.setRealTimeSimulation(1)
while (p.isConnected()):
	p.getCameraImage(320,200)
	import time
	time.sleep(1./240.)