diff --git a/src/filters/color/ColorMatrixFilter.js b/src/filters/color/ColorMatrixFilter.js index de18e5b..423c522 100644 --- a/src/filters/color/ColorMatrixFilter.js +++ b/src/filters/color/ColorMatrixFilter.js @@ -547,11 +547,11 @@ matrix: { get: function () { - return this.uniforms.matrix.value; + return this.uniforms.m.value; }, set: function (value) { - this.uniforms.matrix.value = value; + this.uniforms.m.value = value; } } });