From ef0ae4935b90210bc91637c1bcf9d2c2906d67b4 Mon Sep 17 00:00:00 2001 From: yunfeibai Date: Thu, 15 Feb 2018 18:37:23 -0800 Subject: [PATCH] Minor change. --- examples/pybullet/examples/projective_texture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pybullet/examples/projective_texture.py b/examples/pybullet/examples/projective_texture.py index e9574e4f7..d339bf5a0 100644 --- a/examples/pybullet/examples/projective_texture.py +++ b/examples/pybullet/examples/projective_texture.py @@ -12,7 +12,7 @@ cubeStartPos = [0,0,1] cubeStartOrientation = p.getQuaternionFromEuler([0,0,0]) boxId = p.loadURDF("cube.urdf",cubeStartPos, cubeStartOrientation) cubePos, cubeOrn = p.getBasePositionAndOrientation(boxId) -textureId = p.loadTexture("checker_blue_test.png") +textureId = p.loadTexture("checker_blue.png") p.changeVisualShape(objectUniqueId=0, linkIndex=-1, textureUniqueId=textureId) p.changeVisualShape(objectUniqueId=1, linkIndex=-1, textureUniqueId=textureId)