Added floating joints to joint types ignored by publisher
This commit is contained in:
parent
8a26b2ac9e
commit
60dac130dd
|
@ -41,7 +41,7 @@ class JointStatePublisher():
|
|||
continue
|
||||
if child.localName == 'joint':
|
||||
jtype = child.getAttribute('type')
|
||||
if jtype == 'fixed':
|
||||
if jtype == 'fixed' or jtype == 'floating':
|
||||
continue
|
||||
name = child.getAttribute('name')
|
||||
self.joint_list.append(name)
|
||||
|
|
Loading…
Reference in New Issue