@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 +2 -2
- package/dist/browser.min.js +1 -1
- package/dist/main.js +1 -1
- package/dist/miniprogram.js +1 -1
- package/dist/module.js +1 -1
- package/package.json +5 -5
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 <=
|
|
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.
|
|
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]);
|