Regenerated codefiles
This commit is contained in:
@@ -15,27 +15,27 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(171, "bConstraintChannel", 56)]
|
||||
public class bConstraintChannel {
|
||||
[DNAFieldAttribute(0, "bConstraintChannel", "*next", "bConstraintChannel", 8, true, 0)]
|
||||
public bConstraintChannel ptr_next;
|
||||
[DNAFieldAttribute(1, "bConstraintChannel", "*prev", "bConstraintChannel", 8, true, 8)]
|
||||
public bConstraintChannel ptr_prev;
|
||||
[DNAFieldAttribute(2, "Ipo", "*ipo", "Ipo", 8, true, 16)]
|
||||
public Ipo ptr_ipo;
|
||||
[DNAFieldAttribute(3, "short", "flag", "short", 2, false, 24)]
|
||||
[DNAFieldAttribute(8, "bConstraintChannel", 0, "*next", "bConstraintChannel", true, 0)]
|
||||
public bConstraintChannel next;
|
||||
[DNAFieldAttribute(8, "bConstraintChannel", 1, "*prev", "bConstraintChannel", true, 8)]
|
||||
public bConstraintChannel prev;
|
||||
[DNAFieldAttribute(8, "Ipo", 2, "*ipo", "Ipo", true, 16)]
|
||||
public Ipo ipo;
|
||||
[DNAFieldAttribute(2, "short", 3, "flag", "short", false, 24)]
|
||||
public short flag;
|
||||
[DNAFieldAttribute(4, "char", "name[30]", "System.Char[]", 30, false, 26)]
|
||||
[DNAFieldAttribute(30, "char", 4, "name[30]", "System.Char[]", false, 26)]
|
||||
public char[] name = new System.Char[30];
|
||||
public bConstraintChannel() {
|
||||
this.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.ptr_ipo = default;
|
||||
this.next = default;
|
||||
this.prev = default;
|
||||
this.ipo = default;
|
||||
this.flag = default;
|
||||
this.name = default;
|
||||
}
|
||||
public bConstraintChannel(bConstraintChannel ptr_next, bConstraintChannel ptr_prev, Ipo ptr_ipo, short flag, char[] name) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
this.ptr_ipo = ptr_ipo;
|
||||
public bConstraintChannel(bConstraintChannel next, bConstraintChannel prev, Ipo ipo, short flag, char[] name) {
|
||||
this.next = next;
|
||||
this.prev = prev;
|
||||
this.ipo = ipo;
|
||||
this.flag = flag;
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user