Releases: gkjohnson/urdf-loaders
Releases · gkjohnson/urdf-loaders
v0.10.1
Added
- Reexport URDF Class types from the root file.
v0.10.0
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
Added
- Support for "mimic" joints.
Fixed
- Incorrect mouseover and mouseout event firing with the manipulation element.
v0.9.3
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
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
Fixed
- Fix
URDFRobot.setJointValues
not always setting all joint values.
v0.9.0
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
Changed
- License text in README to remove unnecessary copy.
v0.8.1
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
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.