@woosh/meep-engine 2.92.4 → 2.92.5
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/build/meep.cjs
CHANGED
|
@@ -85078,7 +85078,7 @@ class AssetManager {
|
|
|
85078
85078
|
* @template T
|
|
85079
85079
|
* @param {String} path
|
|
85080
85080
|
* @param {String} type
|
|
85081
|
-
* @param {function(asset:Asset<T>)} callback
|
|
85081
|
+
* @param {function(asset:Asset<T>)} [callback]
|
|
85082
85082
|
* @param {function(*)} [failure]
|
|
85083
85083
|
* @param {function(loaded:number, total:number)} [progress]
|
|
85084
85084
|
* @param {boolean} [skip_queue]
|
|
@@ -85087,7 +85087,7 @@ class AssetManager {
|
|
|
85087
85087
|
get({
|
|
85088
85088
|
path,
|
|
85089
85089
|
type,
|
|
85090
|
-
callback,
|
|
85090
|
+
callback = noop,
|
|
85091
85091
|
failure = console.error,
|
|
85092
85092
|
progress = noop,
|
|
85093
85093
|
skip_queue = false,
|