Files
BlenderSharp/BlendFile/DNA/CurveMapping.cs
2025-03-04 18:48:04 +01:00

76 lines
3.1 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(128, "CurveMapping", 424)]
public class CurveMapping {
[DNAFieldAttribute(4, "int", 0, "flag", "int", false, 0)]
public int flag;
[DNAFieldAttribute(4, "int", 1, "cur", "int", false, 4)]
public int cur;
[DNAFieldAttribute(4, "int", 2, "preset", "int", false, 8)]
public int preset;
[DNAFieldAttribute(4, "int", 3, "changed_timestamp", "int", false, 12)]
public int changed_timestamp;
[DNAFieldAttribute(16, "rctf", 4, "curr", "rctf", false, 16)]
public rctf curr;
[DNAFieldAttribute(16, "rctf", 5, "clipr", "rctf", false, 32)]
public rctf clipr;
[DNAFieldAttribute(320, "CurveMap", 6, "cm[4]", "CurveMap[]", false, 48)]
public CurveMap[] cm = new CurveMap[4];
[DNAFieldAttribute(12, "float", 7, "black[3]", "System.Single[]", false, 368)]
public float[] black = new System.Single[3];
[DNAFieldAttribute(12, "float", 8, "white[3]", "System.Single[]", false, 380)]
public float[] white = new System.Single[3];
[DNAFieldAttribute(12, "float", 9, "bwmul[3]", "System.Single[]", false, 392)]
public float[] bwmul = new System.Single[3];
[DNAFieldAttribute(12, "float", 10, "sample[3]", "System.Single[]", false, 404)]
public float[] sample = new System.Single[3];
[DNAFieldAttribute(2, "short", 11, "tone", "short", false, 416)]
public short tone;
[DNAFieldAttribute(6, "char", 12, "_pad[6]", "System.Char[]", false, 418)]
public char[] _pad = new System.Char[6];
public CurveMapping() {
this.flag = default;
this.cur = default;
this.preset = default;
this.changed_timestamp = default;
this.curr = default;
this.clipr = default;
this.cm = default;
this.black = default;
this.white = default;
this.bwmul = default;
this.sample = default;
this.tone = default;
this._pad = default;
}
public CurveMapping(int flag, int cur, int preset, int changed_timestamp, rctf curr, rctf clipr, CurveMap[] cm, float[] black, float[] white, float[] bwmul, float[] sample, short tone, char[] _pad) {
this.flag = flag;
this.cur = cur;
this.preset = preset;
this.changed_timestamp = changed_timestamp;
this.curr = curr;
this.clipr = clipr;
this.cm = cm;
this.black = black;
this.white = white;
this.bwmul = bwmul;
this.sample = sample;
this.tone = tone;
this._pad = _pad;
}
}
}