Socket
Socket
Sign inDemoInstall

babylon-navigation-mesh

Package Overview
Dependencies
Maintainers
2
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babylon-navigation-mesh - npm Package Compare versions

Comparing version 1.2.3 to 1.2.4

3

lib-es5/Navigation.js

@@ -111,5 +111,4 @@ "use strict";

_projectPointOnPlane: function _projectPointOnPlane(point, plane) {
var proj = point.clone();
var coef = BABYLON.Vector3.Dot(point, plane.normal) + plane.d;
proj.subtractInPlace(plane.normal.scale(coef));
var proj = point.subtract(plane.normal.scale(coef));

@@ -116,0 +115,0 @@ return proj;

@@ -112,5 +112,4 @@ "use strict";

_projectPointOnPlane: function (point, plane) {
var proj = point.clone();
var coef = BABYLON.Vector3.Dot(point, plane.normal) + plane.d;
proj.subtractInPlace(plane.normal.scale(coef));
var proj = point.subtract(plane.normal.scale(coef));

@@ -117,0 +116,0 @@ return proj;

{
"name": "babylon-navigation-mesh",
"version": "1.2.3",
"version": "1.2.4",
"description": "A toolkit to move on navigation mesh with BABYLONJS",

@@ -5,0 +5,0 @@ "scripts": {

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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