diff --git a/src/components/matrix4/AProjection3.ts b/src/components/matrix4/AProjection3.ts index 7752612..ad8b48a 100644 --- a/src/components/matrix4/AProjection3.ts +++ b/src/components/matrix4/AProjection3.ts @@ -5,10 +5,10 @@ import Matrix4Component from "./Matrix4Component"; export default abstract class AProjection3 extends Matrix4Component { inverseMatrix = new Float32Array(16); constructor(data = Matrix4.create()) { - super(PROJECTION_3D, data, [{ + super(data, [{ label: PROJECTION_3D, unique: true - }]); + }], PROJECTION_3D); } updateProjectionInverse() {