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,27 +11,48 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class FCurve {
[DNAFieldAttribute(0, "FCurve", "*next", 120)]
public FCurve ptr_next;
[DNAFieldAttribute(1, "FCurve", "*prev", 120)]
public FCurve ptr_prev;
[DNAFieldAttribute(2, "bActionGroup", "*grp", 136)]
public bActionGroup ptr_grp;
[DNAFieldAttribute(3, "ChannelDriver", "*driver", 304)]
public ChannelDriver ptr_driver;
[DNAFieldAttribute(4, "ListBase", "modifiers", 16)]
public ListBase modifiers;
[DNAFieldAttribute(5, "BezTriple", "*bezt", 72)]
public BezTriple ptr_bezt;
[DNAFieldAttribute(6, "FPoint", "*fpt", 16)]
public FPoint ptr_fpt;
[DNAFieldAttribute(7, "int", "totvert", 4)]
public int totvert;
[DNAFieldAttribute(8, "int", "active_keyframe_index", 4)]
public int active_keyframe_index;
[DNAFieldAttribute(9, "float", "curval", 4)]
public float curval;
[DNAFieldAttribute(10, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(11, "short", "extend", 2)]
public short extend;
[DNAFieldAttribute(12, "char", "auto_smoothing", 1)]
public char auto_smoothing;
[DNAFieldAttribute(13, "char", "_pad[3]", 1)]
public char[] _pad = new System.Char[3];
[DNAFieldAttribute(14, "int", "array_index", 4)]
public int array_index;
[DNAFieldAttribute(15, "char", "*rna_path", 1)]
public char ptr_rna_path;
[DNAFieldAttribute(16, "int", "color_mode", 4)]
public int color_mode;
[DNAFieldAttribute(17, "float", "color[3]", 4)]
public float[] color = new System.Single[3];
[DNAFieldAttribute(18, "float", "prev_norm_factor", 4)]
public float prev_norm_factor;
[DNAFieldAttribute(19, "float", "prev_offset", 4)]
public float prev_offset;
public FCurve(
FCurve ptr_next,