dacha 0.18.0-alpha.7 → 0.18.0-alpha.8

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.
@@ -189,7 +189,6 @@ export class CharacterController extends SceneSystem {
189
189
  position.x += direction.x * safeDistance;
190
190
  position.y += direction.y * safeDistance;
191
191
  this.handleHit(actor, hit);
192
- clipAgainstNormal(character.velocity, hit.normal);
193
192
  const remainingDistance = Math.max(distance - safeDistance, 0);
194
193
  displacement.x = direction.x * remainingDistance;
195
194
  displacement.y = direction.y * remainingDistance;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dacha",
3
- "version": "0.18.0-alpha.7",
3
+ "version": "0.18.0-alpha.8",
4
4
  "main": "./build/index.js",
5
5
  "types": "./build/index.d.ts",
6
6
  "exports": {