@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.
Files changed (2) hide show
  1. package/dist/behavior.js +1 -1
  2. 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.05,
51
+ isMoving: () => this.worldMoveVelocity.length() > 0.1,
52
52
  };
53
53
  // Direction and movement properties
54
54
  worldHeadDirection;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@drawcall/acta",
3
3
  "type": "module",
4
4
  "main": "dist/index.js",
5
- "version": "0.1.23",
5
+ "version": "0.1.24",
6
6
  "author": "Bela Bohlender",
7
7
  "license": "SEE LICENSE IN LICENSE",
8
8
  "homepage": "https://drawcall.ai",