Custom Matrices
Add custom matrices
In Custom
section, use Create button to create the script.
Now, you can add your own matrices or copy a matrix with the Output/Copy
button and add it in this script.
Here you can now add all matrices you want.
namespace EODE.Wonderland {
static public partial class CustomColorMatrix {
(...)
// My polaroid matrix
static public readonly Mat4x4 Polaroid = new Mat4x4(
1.438f, -0.062f, -0.062f, 0f,
-0.122f, 1.378f, -0.122f, 0f,
-0.016f, -0.016f, 1.483f, 0f,
-0.03f, 0.05f, -0.02f, 0f
);
}
}
Now polaroid will appears in custom matrix list.