@galacean/engine 0.0.0-experimental-renderSort.3 → 0.0.0-experimental-renderSort.4

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/browser.js CHANGED
@@ -26549,7 +26549,7 @@
26549
26549
  */ _proto._quickSort = function _quickSort(a, from, to, compareFunc) {
26550
26550
  while(true){
26551
26551
  // Insertion sort is faster for short arrays.
26552
- if (to - from <= 10000000) {
26552
+ if (to - from <= 10) {
26553
26553
  this._insertionSort(a, from, to, compareFunc);
26554
26554
  return;
26555
26555
  }
@@ -44039,7 +44039,7 @@
44039
44039
  ], GALACEAN_animation_event);
44040
44040
 
44041
44041
  //@ts-ignore
44042
- var version = "0.0.0-experimental-renderSort.3";
44042
+ var version = "0.0.0-experimental-renderSort.4";
44043
44043
  console.log("Galacean engine version: " + version);
44044
44044
  for(var key in CoreObjects){
44045
44045
  Loader.registerClass(key, CoreObjects[key]);