urdf-loader
Advanced tools
Comparing version 0.9.0 to 0.9.1
@@ -7,3 +7,7 @@ # Changelog | ||
## Unreleased | ||
## [0.9.1] - 2020-10-13 | ||
### Fixed | ||
- Fix `URDFRobot.setJointValues` not always setting all joint values. | ||
## [0.9.0] - 2020-10-09 | ||
### Added | ||
@@ -10,0 +14,0 @@ - `URDFRobot.frames` map. |
{ | ||
"name": "urdf-loader", | ||
"version": "0.9.0", | ||
"version": "0.9.1", | ||
"description": "URDF Loader for THREE.js and webcomponent viewer", | ||
@@ -5,0 +5,0 @@ "main": "umd/URDFLoader.js", |
@@ -203,2 +203,10 @@ # urdf-loader | ||
### .loadAsync | ||
```js | ||
loadAsync( urdfpath : string ) : Promise<URDFRobot> | ||
``` | ||
Promise-wrapped version of `load`. | ||
### .parse | ||
@@ -205,0 +213,0 @@ |
@@ -0,0 +0,0 @@ import * as THREE from 'three'; |
@@ -343,7 +343,7 @@ import { Object3D, Quaternion } from 'three'; | ||
didChange = didChange || this.setJointValue(name, ...value); | ||
didChange = this.setJointValue(name, ...value) || didChange; | ||
} else { | ||
didChange = didChange || this.setJointValue(name, value); | ||
didChange = this.setJointValue(name, value) || didChange; | ||
@@ -350,0 +350,0 @@ } |
@@ -0,0 +0,0 @@ (function (global, factory) { |
@@ -347,7 +347,7 @@ (function (global, factory) { | ||
didChange = didChange || this.setJointValue(name, ...value); | ||
didChange = this.setJointValue(name, ...value) || didChange; | ||
} else { | ||
didChange = didChange || this.setJointValue(name, value); | ||
didChange = this.setJointValue(name, value) || didChange; | ||
@@ -354,0 +354,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
527
253546