Skip to content

Commit

Permalink
Merge pull request #4556 from sebavan/master
Browse files Browse the repository at this point in the history
Cache Fix
  • Loading branch information
sebavan committed Jun 16, 2018
2 parents 82b28e5 + 4c846e9 commit fdda148
Show file tree
Hide file tree
Showing 9 changed files with 13,116 additions and 13,120 deletions.
26,202 changes: 13,101 additions & 13,101 deletions dist/preview release/babylon.d.ts

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions dist/preview release/babylon.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/preview release/babylon.max.js
Expand Up @@ -17704,7 +17704,6 @@ var BABYLON;
this._currentRenderId = -1;
this._parentRenderId = -1;
this._childRenderId = -1;
this._parentNode = null;
this._animationPropertiesOverride = null;
/**
* An event triggered when the mesh is disposed
Expand Down
1 change: 0 additions & 1 deletion dist/preview release/babylon.no-module.max.js
Expand Up @@ -17671,7 +17671,6 @@ var BABYLON;
this._currentRenderId = -1;
this._parentRenderId = -1;
this._childRenderId = -1;
this._parentNode = null;
this._animationPropertiesOverride = null;
/**
* An event triggered when the mesh is disposed
Expand Down
12 changes: 6 additions & 6 deletions dist/preview release/babylon.worker.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/preview release/es6.js
Expand Up @@ -17671,7 +17671,6 @@ var BABYLON;
this._currentRenderId = -1;
this._parentRenderId = -1;
this._childRenderId = -1;
this._parentNode = null;
this._animationPropertiesOverride = null;
/**
* An event triggered when the mesh is disposed
Expand Down
4 changes: 2 additions & 2 deletions dist/preview release/viewer/babylon.viewer.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/preview release/viewer/babylon.viewer.max.js
Expand Up @@ -17792,7 +17792,6 @@ var BABYLON;
this._currentRenderId = -1;
this._parentRenderId = -1;
this._childRenderId = -1;
this._parentNode = null;
this._animationPropertiesOverride = null;
/**
* An event triggered when the mesh is disposed
Expand Down
2 changes: 1 addition & 1 deletion src/babylon.node.ts
Expand Up @@ -67,7 +67,7 @@
/** @hidden */
public _cache: any;

private _parentNode: Nullable<Node> = null;
private _parentNode: Nullable<Node>;
private _children: Node[];

/**
Expand Down

0 comments on commit fdda148

Please sign in to comment.