regenerated files

This commit is contained in:
mm00
2025-02-18 18:16:57 +01:00
parent 305186b2a9
commit bc3ac0ad86
937 changed files with 9598 additions and 9586 deletions

View File

@@ -15,21 +15,21 @@ namespace BlendFile.DNA {
[DNAClassAttribute(91, "DriverVar")]
public class DriverVar {
[DNAFieldAttribute(0, "DriverVar", "*next", 920)]
[DNAFieldAttribute(0, "DriverVar", "*next", "DriverVar", 920)]
public DriverVar ptr_next;
[DNAFieldAttribute(1, "DriverVar", "*prev", 920)]
[DNAFieldAttribute(1, "DriverVar", "*prev", "DriverVar", 920)]
public DriverVar ptr_prev;
[DNAFieldAttribute(2, "char", "name[64]", 1)]
[DNAFieldAttribute(2, "char", "name[64]", "System.Char[]", 1)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(3, "DriverTarget", "targets[8]", 104)]
[DNAFieldAttribute(3, "DriverTarget", "targets[8]", "DriverTarget[]", 104)]
public DriverTarget[] targets = new DriverTarget[8];
[DNAFieldAttribute(4, "char", "num_targets", 1)]
[DNAFieldAttribute(4, "char", "num_targets", "char", 1)]
public char num_targets;
[DNAFieldAttribute(5, "char", "type", 1)]
[DNAFieldAttribute(5, "char", "type", "char", 1)]
public char type;
[DNAFieldAttribute(6, "short", "flag", 2)]
[DNAFieldAttribute(6, "short", "flag", "short", 2)]
public short flag;
[DNAFieldAttribute(7, "float", "curval", 4)]
[DNAFieldAttribute(7, "float", "curval", "float", 4)]
public float curval;
public DriverVar() {
this.ptr_next = default;