@galacean/engine-xr-webxr 1.3.11 → 1.3.14
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.map +1 -1
- package/dist/browser.min.js.map +1 -1
- package/dist/main.js.map +1 -1
- package/dist/miniprogram.js +2 -2
- package/dist/module.js.map +1 -1
- package/package.json +4 -4
package/dist/miniprogram.js
CHANGED
|
@@ -4667,7 +4667,7 @@ function _create_class(Constructor, protoProps, staticProps) {
|
|
|
4667
4667
|
out._r = Color.gammaToLinearSpace(this._r);
|
|
4668
4668
|
out._g = Color.gammaToLinearSpace(this._g);
|
|
4669
4669
|
out._b = Color.gammaToLinearSpace(this._b);
|
|
4670
|
-
|
|
4670
|
+
out._onValueChanged && out._onValueChanged();
|
|
4671
4671
|
return out;
|
|
4672
4672
|
};
|
|
4673
4673
|
/**
|
|
@@ -4678,7 +4678,7 @@ function _create_class(Constructor, protoProps, staticProps) {
|
|
|
4678
4678
|
out._r = Color.linearToGammaSpace(this._r);
|
|
4679
4679
|
out._g = Color.linearToGammaSpace(this._g);
|
|
4680
4680
|
out._b = Color.linearToGammaSpace(this._b);
|
|
4681
|
-
|
|
4681
|
+
out._onValueChanged && out._onValueChanged();
|
|
4682
4682
|
return out;
|
|
4683
4683
|
};
|
|
4684
4684
|
/**
|