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,39 +15,39 @@ namespace BlendFile.DNA {
[DNAClassAttribute(95, "BezTriple", 72)]
public struct BezTriple {
[DNAFieldAttribute(0, "float", "vec[3][3]", "System.Single[,]", 36, false)]
[DNAFieldAttribute(0, "float", "vec[3][3]", "System.Single[,]", 36, false, 0)]
public float[,] vec = new System.Single[3,3];
[DNAFieldAttribute(1, "float", "alfa", "float", 4, false)]
[DNAFieldAttribute(1, "float", "alfa", "float", 4, false, 36)]
public float alfa;
[DNAFieldAttribute(2, "float", "weight", "float", 4, false)]
[DNAFieldAttribute(2, "float", "weight", "float", 4, false, 40)]
public float weight;
[DNAFieldAttribute(3, "float", "radius", "float", 4, false)]
[DNAFieldAttribute(3, "float", "radius", "float", 4, false, 44)]
public float radius;
[DNAFieldAttribute(4, "char", "ipo", "char", 1, false)]
[DNAFieldAttribute(4, "char", "ipo", "char", 1, false, 48)]
public char ipo;
[DNAFieldAttribute(5, "uchar", "h1", "uchar", 1, false)]
[DNAFieldAttribute(5, "uchar", "h1", "uchar", 1, false, 49)]
public byte h1;
[DNAFieldAttribute(6, "uchar", "h2", "uchar", 1, false)]
[DNAFieldAttribute(6, "uchar", "h2", "uchar", 1, false, 50)]
public byte h2;
[DNAFieldAttribute(7, "uchar", "f1", "uchar", 1, false)]
[DNAFieldAttribute(7, "uchar", "f1", "uchar", 1, false, 51)]
public byte f1;
[DNAFieldAttribute(8, "uchar", "f2", "uchar", 1, false)]
[DNAFieldAttribute(8, "uchar", "f2", "uchar", 1, false, 52)]
public byte f2;
[DNAFieldAttribute(9, "uchar", "f3", "uchar", 1, false)]
[DNAFieldAttribute(9, "uchar", "f3", "uchar", 1, false, 53)]
public byte f3;
[DNAFieldAttribute(10, "char", "hide", "char", 1, false)]
[DNAFieldAttribute(10, "char", "hide", "char", 1, false, 54)]
public char hide;
[DNAFieldAttribute(11, "char", "easing", "char", 1, false)]
[DNAFieldAttribute(11, "char", "easing", "char", 1, false, 55)]
public char easing;
[DNAFieldAttribute(12, "float", "back", "float", 4, false)]
[DNAFieldAttribute(12, "float", "back", "float", 4, false, 56)]
public float back;
[DNAFieldAttribute(13, "float", "amplitude", "float", 4, false)]
[DNAFieldAttribute(13, "float", "amplitude", "float", 4, false, 60)]
public float amplitude;
[DNAFieldAttribute(14, "float", "period", "float", 4, false)]
[DNAFieldAttribute(14, "float", "period", "float", 4, false, 64)]
public float period;
[DNAFieldAttribute(15, "char", "auto_handle_type", "char", 1, false)]
[DNAFieldAttribute(15, "char", "auto_handle_type", "char", 1, false, 68)]
public char auto_handle_type;
[DNAFieldAttribute(16, "char", "_pad[3]", "System.Char[]", 3, false)]
[DNAFieldAttribute(16, "char", "_pad[3]", "System.Char[]", 3, false, 69)]
public char[] _pad = new System.Char[3];
public BezTriple() {
this.vec = default;