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,29 +15,29 @@ namespace BlendFile.DNA {
[DNAClassAttribute(61, "bItasc", 40)]
public struct bItasc {
[DNAFieldAttribute(0, "int", "iksolver", "int", 4, false)]
[DNAFieldAttribute(0, "int", "iksolver", "int", 4, false, 0)]
public int iksolver;
[DNAFieldAttribute(1, "float", "precision", "float", 4, false)]
[DNAFieldAttribute(1, "float", "precision", "float", 4, false, 4)]
public float precision;
[DNAFieldAttribute(2, "short", "numiter", "short", 2, false)]
[DNAFieldAttribute(2, "short", "numiter", "short", 2, false, 8)]
public short numiter;
[DNAFieldAttribute(3, "short", "numstep", "short", 2, false)]
[DNAFieldAttribute(3, "short", "numstep", "short", 2, false, 10)]
public short numstep;
[DNAFieldAttribute(4, "float", "minstep", "float", 4, false)]
[DNAFieldAttribute(4, "float", "minstep", "float", 4, false, 12)]
public float minstep;
[DNAFieldAttribute(5, "float", "maxstep", "float", 4, false)]
[DNAFieldAttribute(5, "float", "maxstep", "float", 4, false, 16)]
public float maxstep;
[DNAFieldAttribute(6, "short", "solver", "short", 2, false)]
[DNAFieldAttribute(6, "short", "solver", "short", 2, false, 20)]
public short solver;
[DNAFieldAttribute(7, "short", "flag", "short", 2, false)]
[DNAFieldAttribute(7, "short", "flag", "short", 2, false, 22)]
public short flag;
[DNAFieldAttribute(8, "float", "feedback", "float", 4, false)]
[DNAFieldAttribute(8, "float", "feedback", "float", 4, false, 24)]
public float feedback;
[DNAFieldAttribute(9, "float", "maxvel", "float", 4, false)]
[DNAFieldAttribute(9, "float", "maxvel", "float", 4, false, 28)]
public float maxvel;
[DNAFieldAttribute(10, "float", "dampmax", "float", 4, false)]
[DNAFieldAttribute(10, "float", "dampmax", "float", 4, false, 32)]
public float dampmax;
[DNAFieldAttribute(11, "float", "dampeps", "float", 4, false)]
[DNAFieldAttribute(11, "float", "dampeps", "float", 4, false, 36)]
public float dampeps;
public bItasc() {
this.iksolver = default;