@galacean/engine-core 0.0.0-experimental-double11.1 → 0.0.0-experimental-double11.3

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.
package/dist/main.js CHANGED
@@ -14173,7 +14173,8 @@ var Collision = function Collision() {
14173
14173
  /**
14174
14174
  * @internal
14175
14175
  */ _proto._destroy = function _destroy() {
14176
- this._nativeMaterial.destroy();
14176
+ !this._destroyed && this._nativeMaterial.destroy();
14177
+ this._destroyed = true;
14177
14178
  };
14178
14179
  _create_class(PhysicsMaterial, [
14179
14180
  {
@@ -14722,7 +14723,6 @@ __decorate([
14722
14723
  ignoreClone
14723
14724
  ], BoxColliderShape.prototype, "_size", void 0);
14724
14725
 
14725
- console.log("Hello, world!");
14726
14726
  /**
14727
14727
  * Physical collider shape for sphere.
14728
14728
  */ var SphereColliderShape = /*#__PURE__*/ function(ColliderShape) {