Starter code for the simulation

This commit is contained in:
levdoescode
2022-12-15 23:53:50 -05:00
parent df748e759d
commit a79cf54563

View File

@ -0,0 +1,9 @@
import pybullet as p
import pybullet_data as pd
p.connect(p.GUI)
p.setPhysicsEngineParameter(enableFileCaching=0)
p.configureDebugVisualizer(p.COV_ENABLE_GUI, 0)
plane_shape = p.createCollisionShape(p.GEOM_PLANE)
floor = p.createMultiBody(plane_shape, plane_shape)
p.setGravity(0, 0, -10)