Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -15,31 +15,31 @@ namespace BlendFile.DNA {
[DNAClassAttribute(90, "DriverTarget", 104)]
public class DriverTarget {
[DNAFieldAttribute(0, "ID", "*id", "ID", 8, true, 0)]
public ID ptr_id;
[DNAFieldAttribute(1, "char", "*rna_path", "char", 8, true, 8)]
public char ptr_rna_path;
[DNAFieldAttribute(2, "char", "pchan_name[64]", "System.Char[]", 64, false, 16)]
[DNAFieldAttribute(8, "ID", 0, "*id", "ID", true, 0)]
public ID id;
[DNAFieldAttribute(8, "char", 1, "*rna_path", "char", true, 8)]
public char rna_path;
[DNAFieldAttribute(64, "char", 2, "pchan_name[64]", "System.Char[]", false, 16)]
public char[] pchan_name = new System.Char[64];
[DNAFieldAttribute(3, "short", "transChan", "short", 2, false, 80)]
[DNAFieldAttribute(2, "short", 3, "transChan", "short", false, 80)]
public short transChan;
[DNAFieldAttribute(4, "char", "rotation_mode", "char", 1, false, 82)]
[DNAFieldAttribute(1, "char", 4, "rotation_mode", "char", false, 82)]
public char rotation_mode;
[DNAFieldAttribute(5, "char", "_pad[5]", "System.Char[]", 5, false, 83)]
[DNAFieldAttribute(5, "char", 5, "_pad[5]", "System.Char[]", false, 83)]
public char[] _pad = new System.Char[5];
[DNAFieldAttribute(6, "short", "flag", "short", 2, false, 88)]
[DNAFieldAttribute(2, "short", 6, "flag", "short", false, 88)]
public short flag;
[DNAFieldAttribute(7, "short", "options", "short", 2, false, 90)]
[DNAFieldAttribute(2, "short", 7, "options", "short", false, 90)]
public short options;
[DNAFieldAttribute(8, "int", "idtype", "int", 4, false, 92)]
[DNAFieldAttribute(4, "int", 8, "idtype", "int", false, 92)]
public int idtype;
[DNAFieldAttribute(9, "int", "context_property", "int", 4, false, 96)]
[DNAFieldAttribute(4, "int", 9, "context_property", "int", false, 96)]
public int context_property;
[DNAFieldAttribute(10, "float", "fallback_value", "float", 4, false, 100)]
[DNAFieldAttribute(4, "float", 10, "fallback_value", "float", false, 100)]
public float fallback_value;
public DriverTarget() {
this.ptr_id = default;
this.ptr_rna_path = default;
this.id = default;
this.rna_path = default;
this.pchan_name = default;
this.transChan = default;
this.rotation_mode = default;
@@ -50,9 +50,9 @@ namespace BlendFile.DNA {
this.context_property = default;
this.fallback_value = default;
}
public DriverTarget(ID ptr_id, char ptr_rna_path, char[] pchan_name, short transChan, char rotation_mode, char[] _pad, short flag, short options, int idtype, int context_property, float fallback_value) {
this.ptr_id = ptr_id;
this.ptr_rna_path = ptr_rna_path;
public DriverTarget(ID id, char rna_path, char[] pchan_name, short transChan, char rotation_mode, char[] _pad, short flag, short options, int idtype, int context_property, float fallback_value) {
this.id = id;
this.rna_path = rna_path;
this.pchan_name = pchan_name;
this.transChan = transChan;
this.rotation_mode = rotation_mode;