@drawcall/acta 0.1.23 → 0.1.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/behavior.js +1 -1
- package/package.json +1 -1
package/dist/behavior.js
CHANGED
|
@@ -48,7 +48,7 @@ export class CharacterBehavior extends EventDispatcher {
|
|
|
48
48
|
properties = {};
|
|
49
49
|
computedProperties = {
|
|
50
50
|
// < 0.02 m/s (2 cm per second) is generally imperceptible to the human eye
|
|
51
|
-
isMoving: () => this.worldMoveVelocity.length() > 0.
|
|
51
|
+
isMoving: () => this.worldMoveVelocity.length() > 0.1,
|
|
52
52
|
};
|
|
53
53
|
// Direction and movement properties
|
|
54
54
|
worldHeadDirection;
|