Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -31,6 +31,16 @@ namespace BlendFile.DNA {
public int strip_array_num;
[DNAFieldAttribute(7, "uchar", "_pad1[4]", 1)]
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.ptr_ptr_strip_array = default;
this.strip_array_num = default;
this._pad1 = 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) {
this.name = name;
this.influence = influence;