Regenerated all the files
This commit is contained in:
@@ -11,14 +11,22 @@ using System;
|
||||
|
||||
|
||||
namespace BlendFile.DNA {
|
||||
using BlendFile;
|
||||
|
||||
public struct ColorBand {
|
||||
[DNAFieldAttribute(0, "short", "tot", 2)]
|
||||
public short tot;
|
||||
[DNAFieldAttribute(1, "short", "cur", 2)]
|
||||
public short cur;
|
||||
[DNAFieldAttribute(2, "char", "ipotype", 1)]
|
||||
public char ipotype;
|
||||
[DNAFieldAttribute(3, "char", "ipotype_hue", 1)]
|
||||
public char ipotype_hue;
|
||||
[DNAFieldAttribute(4, "char", "color_mode", 1)]
|
||||
public char color_mode;
|
||||
[DNAFieldAttribute(5, "char", "_pad[1]", 1)]
|
||||
public char[] _pad = new System.Char[1];
|
||||
[DNAFieldAttribute(6, "CBData", "data[32]", 24)]
|
||||
public CBData[] data = new CBData[32];
|
||||
public ColorBand(short tot, short cur, char ipotype, char ipotype_hue, char color_mode, char[] _pad, CBData[] data) {
|
||||
this.tot = tot;
|
||||
|
||||
Reference in New Issue
Block a user