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

@@ -13,43 +13,39 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(66, "ActionLayer", 88)]
[DNAClassAttribute(66, "ActionLayer", 76)]
public class ActionLayer {
[DNAFieldAttribute(0, "char", "name[64]", "System.Char[]", 64, false, 0)]
[DNAFieldAttribute(64, "char", 0, "name[64]", "System.Char[]", false, 0)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(1, "float", "influence", "float", 4, false, 64)]
[DNAFieldAttribute(4, "float", 1, "influence", "float", false, 64)]
public float influence;
[DNAFieldAttribute(2, "uchar", "layer_flags", "uchar", 1, false, 68)]
[DNAFieldAttribute(1, "uchar", 2, "layer_flags", "uchar", false, 68)]
public byte layer_flags;
[DNAFieldAttribute(3, "int8_t", "layer_mix_mode", "int8_t", 1, false, 69)]
[DNAFieldAttribute(1, "int8_t", 3, "layer_mix_mode", "int8_t", false, 69)]
public sbyte layer_mix_mode;
[DNAFieldAttribute(4, "uchar", "_pad0[2]", "System.Byte[]", 2, false, 70)]
[DNAFieldAttribute(2, "uchar", 4, "_pad0[2]", "System.Byte[]", false, 70)]
public byte[] _pad0 = new System.Byte[2];
[DNAFieldAttribute(5, "ActionStrip", "**strip_array", "ActionStrip", 8, true, 72)]
public ActionStrip ptr_ptr_strip_array;
[DNAFieldAttribute(6, "int", "strip_array_num", "int", 4, false, 80)]
public int strip_array_num;
[DNAFieldAttribute(7, "uchar", "_pad1[4]", "System.Byte[]", 4, false, 84)]
[DNAFieldAttribute(4, "uchar", 7, "_pad1[4]", "System.Byte[]", false, 72)]
public byte[] _pad1 = new System.Byte[4];
[DNAListAttribute(8, "ActionStrip", "**strip_array", 5, "ActionStrip", "strip_array_num", 6, 76)]
public System.Collections.Generic.List<ActionStrip> strip_array;
public ActionLayer() {
this.name = default;
this.influence = default;
this.layer_flags = default;
this.layer_mix_mode = default;
this._pad0 = default;
this.ptr_ptr_strip_array = default;
this.strip_array_num = default;
this._pad1 = default;
this.strip_array = default;
}
public ActionLayer(char[] name, float influence, byte layer_flags, sbyte layer_mix_mode, byte[] _pad0, ActionStrip ptr_ptr_strip_array, int strip_array_num, byte[] _pad1) {
public ActionLayer(char[] name, float influence, byte layer_flags, sbyte layer_mix_mode, byte[] _pad0, byte[] _pad1, System.Collections.Generic.List<ActionStrip> strip_array) {
this.name = name;
this.influence = influence;
this.layer_flags = layer_flags;
this.layer_mix_mode = layer_mix_mode;
this._pad0 = _pad0;
this.ptr_ptr_strip_array = ptr_ptr_strip_array;
this.strip_array_num = strip_array_num;
this._pad1 = _pad1;
this.strip_array = strip_array;
}
}
}