Regenerated code files

This commit is contained in:
Samuele Lorefice
2025-03-07 19:13:29 +01:00
parent 26add1559f
commit 73e98f5c5d
10 changed files with 163 additions and 163 deletions

View File

@@ -25,27 +25,27 @@ namespace BlendFile.DNA {
public sbyte layer_mix_mode;
[DNAFieldAttribute(2, "uchar", 4, "_pad0[2]", "System.Byte[]", false, 70)]
public byte[] _pad0 = new System.Byte[2];
[DNAFieldAttribute(4, "uchar", 7, "_pad1[4]", "System.Byte[]", false, 72)]
public byte[] _pad1 = new System.Byte[4];
[DNAListAttribute(8, "ActionStrip", "**strip_array", 5, "ActionStrip", "int", "strip_array_num", 6, 76, 0)]
[DNAListAttribute(8, "ActionStrip", "**strip_array", 5, "ActionStrip", 80, "strip_array_num", 6, 72, 0)]
public System.Collections.Generic.List<ActionStrip> strip_array;
[DNAFieldAttribute(4, "uchar", 7, "_pad1[4]", "System.Byte[]", false, 84)]
public byte[] _pad1 = new System.Byte[4];
public ActionLayer() {
this.name = default;
this.influence = default;
this.layer_flags = default;
this.layer_mix_mode = default;
this._pad0 = default;
this._pad1 = default;
this.strip_array = default;
this._pad1 = default;
}
public ActionLayer(char[] name, float influence, byte layer_flags, sbyte layer_mix_mode, byte[] _pad0, byte[] _pad1, System.Collections.Generic.List<ActionStrip> strip_array) {
public ActionLayer(char[] name, float influence, byte layer_flags, sbyte layer_mix_mode, byte[] _pad0, System.Collections.Generic.List<ActionStrip> strip_array, byte[] _pad1) {
this.name = name;
this.influence = influence;
this.layer_flags = layer_flags;
this.layer_mix_mode = layer_mix_mode;
this._pad0 = _pad0;
this._pad1 = _pad1;
this.strip_array = strip_array;
this._pad1 = _pad1;
}
}
}