Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,15 +11,24 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class ActionLayer {
[DNAFieldAttribute(0, "char", "name[64]", 1)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(1, "float", "influence", 4)]
public float influence;
[DNAFieldAttribute(2, "uchar", "layer_flags", 1)]
public byte layer_flags;
[DNAFieldAttribute(3, "int8_t", "layer_mix_mode", 1)]
public sbyte layer_mix_mode;
[DNAFieldAttribute(4, "uchar", "_pad0[2]", 1)]
public byte[] _pad0 = new System.Byte[2];
[DNAFieldAttribute(5, "ActionStrip", "**strip_array", 24)]
public ActionStrip ptr_ptr_strip_array;
[DNAFieldAttribute(6, "int", "strip_array_num", 4)]
public int strip_array_num;
[DNAFieldAttribute(7, "uchar", "_pad1[4]", 1)]
public byte[] _pad1 = new System.Byte[4];
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;