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

52 lines
1.9 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(134, "ColorBand", 776)]
public class ColorBand {
[DNAFieldAttribute(2, "short", 0, "tot", "short", false, 0)]
public short tot;
[DNAFieldAttribute(2, "short", 1, "cur", "short", false, 2)]
public short cur;
[DNAFieldAttribute(1, "char", 2, "ipotype", "char", false, 4)]
public char ipotype;
[DNAFieldAttribute(1, "char", 3, "ipotype_hue", "char", false, 5)]
public char ipotype_hue;
[DNAFieldAttribute(1, "char", 4, "color_mode", "char", false, 6)]
public char color_mode;
[DNAFieldAttribute(1, "char", 5, "_pad[1]", "System.Char[]", false, 7)]
public char[] _pad = new System.Char[1];
[DNAFieldAttribute(768, "CBData", 6, "data[32]", "CBData[]", false, 8)]
public CBData[] data = new CBData[32];
public ColorBand() {
this.tot = default;
this.cur = default;
this.ipotype = default;
this.ipotype_hue = default;
this.color_mode = default;
this._pad = default;
this.data = default;
}
public ColorBand(short tot, short cur, char ipotype, char ipotype_hue, char color_mode, char[] _pad, CBData[] data) {
this.tot = tot;
this.cur = cur;
this.ipotype = ipotype;
this.ipotype_hue = ipotype_hue;
this.color_mode = color_mode;
this._pad = _pad;
this.data = data;
}
}
}