Skip to content
Snippets Groups Projects
Commit faead5ff authored by Florent Lamiraux's avatar Florent Lamiraux
Browse files

Add a parameter in python class Robot to prevent reloading urdf file.

parent 063de286
No related branches found
No related tags found
No related merge requests found
......@@ -70,8 +70,8 @@ class Robot (Parent):
"RLEG_JOINT5": 0.0
}
def __init__ (self, robotName):
Parent.__init__ (self, robotName, "freeflyer")
def __init__ (self, robotName, load = True):
Parent.__init__ (self, robotName, "freeflyer", load)
self.rightWrist = "RARM_JOINT5"
self.leftWrist = "LARM_JOINT5"
self.rightAnkle = "RLEG_JOINT5"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment