mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 13:50:04 +00:00
add testMJCF.py script, to visualize MJCF file
This commit is contained in:
parent
7c15767452
commit
466c853489
28
examples/pybullet/gym/pybullet_envs/examples/testMJCF.py
Normal file
28
examples/pybullet/gym/pybullet_envs/examples/testMJCF.py
Normal file
@ -0,0 +1,28 @@
|
||||
import os
|
||||
import inspect
|
||||
currentdir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
|
||||
parentdir = os.path.dirname(os.path.dirname(currentdir))
|
||||
os.sys.path.insert(0,parentdir)
|
||||
|
||||
import pybullet as p
|
||||
import pybullet_data
|
||||
import time
|
||||
|
||||
def test(args):
|
||||
p.connect(p.GUI)
|
||||
p.setAdditionalSearchPath(pybullet_data.getDataPath())
|
||||
fileName = os.path.join("mjcf", args.mjcf)
|
||||
print("fileName")
|
||||
print(fileName)
|
||||
p.loadMJCF(fileName)
|
||||
while (1):
|
||||
p.stepSimulation()
|
||||
p.getCameraImage(320,240)
|
||||
time.sleep(0.01)
|
||||
|
||||
if __name__ == '__main__':
|
||||
import argparse
|
||||
parser = argparse.ArgumentParser(formatter_class=argparse.ArgumentDefaultsHelpFormatter)
|
||||
parser.add_argument('--mjcf', help='MJCF filename', default="humanoid.xml")
|
||||
args = parser.parse_args()
|
||||
test(args)
|
Loading…
Reference in New Issue
Block a user