Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -39,6 +39,20 @@ namespace BlendFile.DNA {
public float output_temperature;
[DNAFieldAttribute(11, "float", "output_tint", 4)]
public float output_tint;
public NodeColorBalance() {
this.slope = default;
this.offset = default;
this.power = default;
this.offset_basis = default;
this._pad = default;
this.lift = default;
this.gamma = default;
this.gain = default;
this.input_temperature = default;
this.input_tint = default;
this.output_temperature = default;
this.output_tint = default;
}
public NodeColorBalance(float[] slope, float[] offset, float[] power, float offset_basis, char[] _pad, float[] lift, float[] gamma, float[] gain, float input_temperature, float input_tint, float output_temperature, float output_tint) {
this.slope = slope;
this.offset = offset;