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,13 +11,20 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class ActionChannelBag {
[DNAFieldAttribute(0, "int", "slot_handle", 4)]
public int slot_handle;
[DNAFieldAttribute(1, "int", "group_array_num", 4)]
public int group_array_num;
[DNAFieldAttribute(2, "bActionGroup", "**group_array", 136)]
public bActionGroup ptr_ptr_group_array;
[DNAFieldAttribute(3, "uchar", "_pad[4]", 1)]
public byte[] _pad = new System.Byte[4];
[DNAFieldAttribute(4, "int", "fcurve_array_num", 4)]
public int fcurve_array_num;
[DNAFieldAttribute(5, "FCurve", "**fcurve_array", 120)]
public FCurve ptr_ptr_fcurve_array;
public ActionChannelBag(int slot_handle, int group_array_num, bActionGroup ptr_ptr_group_array, byte[] _pad, int fcurve_array_num, FCurve ptr_ptr_fcurve_array) {
this.slot_handle = slot_handle;