Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@enable3d/ammo-physics

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@enable3d/ammo-physics - npm Package Compare versions

Comparing version 0.24.1 to 0.25.0

6

dist/physics.js

@@ -317,3 +317,3 @@ /**

if (checkCollisions0 || checkCollisions1) {
const names = [threeObject0.name, threeObject1.name].sort();
const names = [threeObject0.uuid, threeObject1.uuid].sort();
const combinedName = `${names[0]}__${names[1]}`;

@@ -406,4 +406,4 @@ if (this.earlierDetectedCollisions.find(el => el.combinedName === combinedName))

const split = combinedName.split('__');
const obj0 = this.rigidBodies.find(obj => obj.name === split[0]);
const obj1 = this.rigidBodies.find(obj => obj.name === split[1]);
const obj0 = this.rigidBodies.find(obj => obj.uuid === split[0]);
const obj1 = this.rigidBodies.find(obj => obj.uuid === split[1]);
const event = 'end';

@@ -410,0 +410,0 @@ if (obj0 && obj1)

{
"name": "@enable3d/ammo-physics",
"version": "0.24.1",
"version": "0.25.0",
"description": "Physics Plugin for three.js",

@@ -32,9 +32,9 @@ "main": "dist/index.js",

"dependencies": {
"@enable3d/common": "^0.24.1",
"@enable3d/three-wrapper": "^0.24.1",
"@enable3d/common": "^0.25.0",
"@enable3d/three-wrapper": "^0.25.0",
"@yandeu/events": "0.0.5"
},
"peerDependencies": {
"@types/three": "~0.133.1",
"three": "~0.133.1"
"@types/three": "~0.136.0",
"three": "~0.136.0"
},

@@ -41,0 +41,0 @@ "funding": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc