Regenerated codefiles
This commit is contained in:
@@ -15,25 +15,25 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(91, "DriverVar", 920)]
|
||||
public class DriverVar {
|
||||
[DNAFieldAttribute(0, "DriverVar", "*next", "DriverVar", 8, true, 0)]
|
||||
public DriverVar ptr_next;
|
||||
[DNAFieldAttribute(1, "DriverVar", "*prev", "DriverVar", 8, true, 8)]
|
||||
public DriverVar ptr_prev;
|
||||
[DNAFieldAttribute(2, "char", "name[64]", "System.Char[]", 64, false, 16)]
|
||||
[DNAFieldAttribute(8, "DriverVar", 0, "*next", "DriverVar", true, 0)]
|
||||
public DriverVar next;
|
||||
[DNAFieldAttribute(8, "DriverVar", 1, "*prev", "DriverVar", true, 8)]
|
||||
public DriverVar prev;
|
||||
[DNAFieldAttribute(64, "char", 2, "name[64]", "System.Char[]", false, 16)]
|
||||
public char[] name = new System.Char[64];
|
||||
[DNAFieldAttribute(3, "DriverTarget", "targets[8]", "DriverTarget[]", 832, false, 80)]
|
||||
[DNAFieldAttribute(832, "DriverTarget", 3, "targets[8]", "DriverTarget[]", false, 80)]
|
||||
public DriverTarget[] targets = new DriverTarget[8];
|
||||
[DNAFieldAttribute(4, "char", "num_targets", "char", 1, false, 912)]
|
||||
[DNAFieldAttribute(1, "char", 4, "num_targets", "char", false, 912)]
|
||||
public char num_targets;
|
||||
[DNAFieldAttribute(5, "char", "type", "char", 1, false, 913)]
|
||||
[DNAFieldAttribute(1, "char", 5, "type", "char", false, 913)]
|
||||
public char type;
|
||||
[DNAFieldAttribute(6, "short", "flag", "short", 2, false, 914)]
|
||||
[DNAFieldAttribute(2, "short", 6, "flag", "short", false, 914)]
|
||||
public short flag;
|
||||
[DNAFieldAttribute(7, "float", "curval", "float", 4, false, 916)]
|
||||
[DNAFieldAttribute(4, "float", 7, "curval", "float", false, 916)]
|
||||
public float curval;
|
||||
public DriverVar() {
|
||||
this.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.next = default;
|
||||
this.prev = default;
|
||||
this.name = default;
|
||||
this.targets = default;
|
||||
this.num_targets = default;
|
||||
@@ -41,9 +41,9 @@ namespace BlendFile.DNA {
|
||||
this.flag = default;
|
||||
this.curval = default;
|
||||
}
|
||||
public DriverVar(DriverVar ptr_next, DriverVar ptr_prev, char[] name, DriverTarget[] targets, char num_targets, char type, short flag, float curval) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
public DriverVar(DriverVar next, DriverVar prev, char[] name, DriverTarget[] targets, char num_targets, char type, short flag, float curval) {
|
||||
this.next = next;
|
||||
this.prev = prev;
|
||||
this.name = name;
|
||||
this.targets = targets;
|
||||
this.num_targets = num_targets;
|
||||
|
||||
Reference in New Issue
Block a user