Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

@@ -15,37 +15,37 @@ namespace BlendFile.DNA {
[DNAClassAttribute(238, "WaveEff", 64)]
public class WaveEff {
[DNAFieldAttribute(0, "WaveEff", "*next", "WaveEff", 8, true)]
[DNAFieldAttribute(0, "WaveEff", "*next", "WaveEff", 8, true, 0)]
public WaveEff ptr_next;
[DNAFieldAttribute(1, "WaveEff", "*prev", "WaveEff", 8, true)]
[DNAFieldAttribute(1, "WaveEff", "*prev", "WaveEff", 8, true, 8)]
public WaveEff ptr_prev;
[DNAFieldAttribute(2, "short", "type", "short", 2, false)]
[DNAFieldAttribute(2, "short", "type", "short", 2, false, 16)]
public short type;
[DNAFieldAttribute(3, "short", "flag", "short", 2, false)]
[DNAFieldAttribute(3, "short", "flag", "short", 2, false, 18)]
public short flag;
[DNAFieldAttribute(4, "short", "buttype", "short", 2, false)]
[DNAFieldAttribute(4, "short", "buttype", "short", 2, false, 20)]
public short buttype;
[DNAFieldAttribute(5, "short", "stype", "short", 2, false)]
[DNAFieldAttribute(5, "short", "stype", "short", 2, false, 22)]
public short stype;
[DNAFieldAttribute(6, "float", "startx", "float", 4, false)]
[DNAFieldAttribute(6, "float", "startx", "float", 4, false, 24)]
public float startx;
[DNAFieldAttribute(7, "float", "starty", "float", 4, false)]
[DNAFieldAttribute(7, "float", "starty", "float", 4, false, 28)]
public float starty;
[DNAFieldAttribute(8, "float", "height", "float", 4, false)]
[DNAFieldAttribute(8, "float", "height", "float", 4, false, 32)]
public float height;
[DNAFieldAttribute(9, "float", "width", "float", 4, false)]
[DNAFieldAttribute(9, "float", "width", "float", 4, false, 36)]
public float width;
[DNAFieldAttribute(10, "float", "narrow", "float", 4, false)]
[DNAFieldAttribute(10, "float", "narrow", "float", 4, false, 40)]
public float narrow;
[DNAFieldAttribute(11, "float", "speed", "float", 4, false)]
[DNAFieldAttribute(11, "float", "speed", "float", 4, false, 44)]
public float speed;
[DNAFieldAttribute(12, "float", "minfac", "float", 4, false)]
[DNAFieldAttribute(12, "float", "minfac", "float", 4, false, 48)]
public float minfac;
[DNAFieldAttribute(13, "float", "damp", "float", 4, false)]
[DNAFieldAttribute(13, "float", "damp", "float", 4, false, 52)]
public float damp;
[DNAFieldAttribute(14, "float", "timeoffs", "float", 4, false)]
[DNAFieldAttribute(14, "float", "timeoffs", "float", 4, false, 56)]
public float timeoffs;
[DNAFieldAttribute(15, "float", "lifetime", "float", 4, false)]
[DNAFieldAttribute(15, "float", "lifetime", "float", 4, false, 60)]
public float lifetime;
public WaveEff() {
this.ptr_next = default;