@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.
@@ -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
- this._onValueChanged && this._onValueChanged();
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
- this._onValueChanged && this._onValueChanged();
4681
+ out._onValueChanged && out._onValueChanged();
4682
4682
  return out;
4683
4683
  };
4684
4684
  /**