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,36 +11,66 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class NlaStrip {
[DNAFieldAttribute(0, "NlaStrip", "*next", 288)]
public NlaStrip ptr_next;
[DNAFieldAttribute(1, "NlaStrip", "*prev", 288)]
public NlaStrip ptr_prev;
[DNAFieldAttribute(2, "ListBase", "strips", 16)]
public ListBase strips;
[DNAFieldAttribute(3, "bAction", "*act", 352)]
public bAction ptr_act;
[DNAFieldAttribute(4, "int", "action_slot_handle", 4)]
public int action_slot_handle;
[DNAFieldAttribute(5, "char", "action_slot_name[66]", 1)]
public char[] action_slot_name = new System.Char[66];
[DNAFieldAttribute(6, "char", "_pad0[2]", 1)]
public char[] _pad0 = new System.Char[2];
[DNAFieldAttribute(7, "ListBase", "fcurves", 16)]
public ListBase fcurves;
[DNAFieldAttribute(8, "ListBase", "modifiers", 16)]
public ListBase modifiers;
[DNAFieldAttribute(9, "char", "name[64]", 1)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(10, "float", "influence", 4)]
public float influence;
[DNAFieldAttribute(11, "float", "strip_time", 4)]
public float strip_time;
[DNAFieldAttribute(12, "float", "start", 4)]
public float start;
[DNAFieldAttribute(13, "float", "end", 4)]
public float end;
[DNAFieldAttribute(14, "float", "actstart", 4)]
public float actstart;
[DNAFieldAttribute(15, "float", "actend", 4)]
public float actend;
[DNAFieldAttribute(16, "float", "repeat", 4)]
public float repeat;
[DNAFieldAttribute(17, "float", "scale", 4)]
public float scale;
[DNAFieldAttribute(18, "float", "blendin", 4)]
public float blendin;
[DNAFieldAttribute(19, "float", "blendout", 4)]
public float blendout;
[DNAFieldAttribute(20, "short", "blendmode", 2)]
public short blendmode;
[DNAFieldAttribute(21, "short", "extendmode", 2)]
public short extendmode;
[DNAFieldAttribute(22, "char", "_pad1[2]", 1)]
public char[] _pad1 = new System.Char[2];
[DNAFieldAttribute(23, "short", "type", 2)]
public short type;
[DNAFieldAttribute(24, "void", "*speaker_handle", 0)]
public object ptr_speaker_handle;
[DNAFieldAttribute(25, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(26, "char", "_pad2[4]", 1)]
public char[] _pad2 = new System.Char[4];
[DNAFieldAttribute(27, "NlaStrip", "*orig_strip", 288)]
public NlaStrip ptr_orig_strip;
[DNAFieldAttribute(28, "void", "*_pad3", 0)]
public object ptr__pad3;
public NlaStrip(
NlaStrip ptr_next,