Regenerated codefiles
This commit is contained in:
@@ -15,39 +15,39 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(337, "KeyBlock", 184)]
|
||||
public class KeyBlock {
|
||||
[DNAFieldAttribute(0, "KeyBlock", "*next", "KeyBlock", 8, true, 0)]
|
||||
public KeyBlock ptr_next;
|
||||
[DNAFieldAttribute(1, "KeyBlock", "*prev", "KeyBlock", 8, true, 8)]
|
||||
public KeyBlock ptr_prev;
|
||||
[DNAFieldAttribute(2, "float", "pos", "float", 4, false, 16)]
|
||||
[DNAFieldAttribute(8, "KeyBlock", 0, "*next", "KeyBlock", true, 0)]
|
||||
public KeyBlock next;
|
||||
[DNAFieldAttribute(8, "KeyBlock", 1, "*prev", "KeyBlock", true, 8)]
|
||||
public KeyBlock prev;
|
||||
[DNAFieldAttribute(4, "float", 2, "pos", "float", false, 16)]
|
||||
public float pos;
|
||||
[DNAFieldAttribute(3, "float", "curval", "float", 4, false, 20)]
|
||||
[DNAFieldAttribute(4, "float", 3, "curval", "float", false, 20)]
|
||||
public float curval;
|
||||
[DNAFieldAttribute(4, "short", "type", "short", 2, false, 24)]
|
||||
[DNAFieldAttribute(2, "short", 4, "type", "short", false, 24)]
|
||||
public short type;
|
||||
[DNAFieldAttribute(5, "char", "_pad1[2]", "System.Char[]", 2, false, 26)]
|
||||
[DNAFieldAttribute(2, "char", 5, "_pad1[2]", "System.Char[]", false, 26)]
|
||||
public char[] _pad1 = new System.Char[2];
|
||||
[DNAFieldAttribute(6, "short", "relative", "short", 2, false, 28)]
|
||||
[DNAFieldAttribute(2, "short", 6, "relative", "short", false, 28)]
|
||||
public short relative;
|
||||
[DNAFieldAttribute(7, "short", "flag", "short", 2, false, 30)]
|
||||
[DNAFieldAttribute(2, "short", 7, "flag", "short", false, 30)]
|
||||
public short flag;
|
||||
[DNAFieldAttribute(8, "int", "totelem", "int", 4, false, 32)]
|
||||
[DNAFieldAttribute(4, "int", 8, "totelem", "int", false, 32)]
|
||||
public int totelem;
|
||||
[DNAFieldAttribute(9, "int", "uid", "int", 4, false, 36)]
|
||||
[DNAFieldAttribute(4, "int", 9, "uid", "int", false, 36)]
|
||||
public int uid;
|
||||
[DNAFieldAttribute(10, "void", "*data", "void", 8, true, 40)]
|
||||
public object ptr_data;
|
||||
[DNAFieldAttribute(11, "char", "name[64]", "System.Char[]", 64, false, 48)]
|
||||
[DNAFieldAttribute(8, "void", 10, "*data", "void", true, 40)]
|
||||
public object data;
|
||||
[DNAFieldAttribute(64, "char", 11, "name[64]", "System.Char[]", false, 48)]
|
||||
public char[] name = new System.Char[64];
|
||||
[DNAFieldAttribute(12, "char", "vgroup[64]", "System.Char[]", 64, false, 112)]
|
||||
[DNAFieldAttribute(64, "char", 12, "vgroup[64]", "System.Char[]", false, 112)]
|
||||
public char[] vgroup = new System.Char[64];
|
||||
[DNAFieldAttribute(13, "float", "slidermin", "float", 4, false, 176)]
|
||||
[DNAFieldAttribute(4, "float", 13, "slidermin", "float", false, 176)]
|
||||
public float slidermin;
|
||||
[DNAFieldAttribute(14, "float", "slidermax", "float", 4, false, 180)]
|
||||
[DNAFieldAttribute(4, "float", 14, "slidermax", "float", false, 180)]
|
||||
public float slidermax;
|
||||
public KeyBlock() {
|
||||
this.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.next = default;
|
||||
this.prev = default;
|
||||
this.pos = default;
|
||||
this.curval = default;
|
||||
this.type = default;
|
||||
@@ -56,15 +56,15 @@ namespace BlendFile.DNA {
|
||||
this.flag = default;
|
||||
this.totelem = default;
|
||||
this.uid = default;
|
||||
this.ptr_data = default;
|
||||
this.data = default;
|
||||
this.name = default;
|
||||
this.vgroup = default;
|
||||
this.slidermin = default;
|
||||
this.slidermax = default;
|
||||
}
|
||||
public KeyBlock(KeyBlock ptr_next, KeyBlock ptr_prev, float pos, float curval, short type, char[] _pad1, short relative, short flag, int totelem, int uid, object ptr_data, char[] name, char[] vgroup, float slidermin, float slidermax) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
public KeyBlock(KeyBlock next, KeyBlock prev, float pos, float curval, short type, char[] _pad1, short relative, short flag, int totelem, int uid, object data, char[] name, char[] vgroup, float slidermin, float slidermax) {
|
||||
this.next = next;
|
||||
this.prev = prev;
|
||||
this.pos = pos;
|
||||
this.curval = curval;
|
||||
this.type = type;
|
||||
@@ -73,7 +73,7 @@ namespace BlendFile.DNA {
|
||||
this.flag = flag;
|
||||
this.totelem = totelem;
|
||||
this.uid = uid;
|
||||
this.ptr_data = ptr_data;
|
||||
this.data = data;
|
||||
this.name = name;
|
||||
this.vgroup = vgroup;
|
||||
this.slidermin = slidermin;
|
||||
|
||||
Reference in New Issue
Block a user