Skip to content

Releases: gkjohnson/urdf-loaders

v0.10.1

17 Apr 01:23
Compare
Choose a tag to compare

Added

  • Reexport URDF Class types from the root file.

v0.10.0

16 Apr 21:37
Compare
Choose a tag to compare

Fixed

  • URDFJoint.axis not correctly defaulting to 1, 0, 0.

Changed

  • Added "type": "module" to the package.json and made the main entry file point to the es6 module.
  • Export URDF Class types as interafaces rather than classes.
  • Changed URDF Class type definitions to be exported as interface rather than class.

v0.9.5

26 Feb 18:51
Compare
Choose a tag to compare

Added

  • Support for "mimic" joints.

Fixed

  • Incorrect mouseover and mouseout event firing with the manipulation element.

v0.9.3

19 Jan 21:55
Compare
Choose a tag to compare

Fixed

  • Unnecessary creation of a new quaternion when setting a joint angle.
  • Throw a human readable error when fetch fails.
  • The model failing to clone if the object names were changed.

Added

  • Ability to set the packages option to a function.

v0.9.2

23 Oct 17:54
Compare
Choose a tag to compare

Added

  • Normal bias to shadows in URDFViewerElement.

Fixed

  • Apply the mesh node scale to the parent visual node rather than the loaded mesh.
  • URDFViewerElement incorrectly calling setJointValue.
  • Incorrectly preserving rotation from loaded meshes.

v0.9.1

13 Oct 23:51
Compare
Choose a tag to compare

Fixed

  • Fix URDFRobot.setJointValues not always setting all joint values.

v0.9.0

10 Oct 03:39
Compare
Choose a tag to compare

Added

  • URDFRobot.frames map.
  • URDFRobot.visual map.
  • URDFRobot.colliders map.
  • Visual and collider nodes now get the name of the associated urdf node.
  • Typescript definitions for URDFVisual and URDFCollider objects.
  • setJointValue function to URDFJoint and URDFRobot.
  • getFrame function to URDFRobot.
  • URDFLoader.loadAsync function

Changed

  • Transparent materials now set depthWrite to false.
  • Removed setOffset, setAngles, and setAngle functions from URDFJoint and URDFRobot.

Fixed

  • Incorrect use of worldMatrixNeedsUpdate to matrixWorldNeedsUpdate.

v0.8.2

09 Jun 04:35
Compare
Choose a tag to compare

Changed

  • License text in README to remove unnecessary copy.

v0.8.1

09 Jun 04:32
Compare
Choose a tag to compare

Added

  • Support for processing pre-parsed XML documents to the parse function. A Document or Element object as returned from DOMParser may be passed in place of the xml string.

v0.8.0

04 Jan 02:41
Compare
Choose a tag to compare

Changed

  • Moved the URDFLoader options to member variables instead of an object paramter to parse and load functions.
  • Added onError and onProgress callbacks to load function.