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,21 +15,21 @@ namespace BlendFile.DNA {
[DNAClassAttribute(206, "BPoint", 36)]
public struct BPoint {
[DNAFieldAttribute(0, "float", "vec[4]", "System.Single[]", 16, false)]
[DNAFieldAttribute(0, "float", "vec[4]", "System.Single[]", 16, false, 0)]
public float[] vec = new System.Single[4];
[DNAFieldAttribute(1, "float", "alfa", "float", 4, false)]
[DNAFieldAttribute(1, "float", "alfa", "float", 4, false, 16)]
public float alfa;
[DNAFieldAttribute(2, "float", "weight", "float", 4, false)]
[DNAFieldAttribute(2, "float", "weight", "float", 4, false, 20)]
public float weight;
[DNAFieldAttribute(3, "uchar", "f1", "uchar", 1, false)]
[DNAFieldAttribute(3, "uchar", "f1", "uchar", 1, false, 24)]
public byte f1;
[DNAFieldAttribute(4, "char", "_pad1[1]", "System.Char[]", 1, false)]
[DNAFieldAttribute(4, "char", "_pad1[1]", "System.Char[]", 1, false, 25)]
public char[] _pad1 = new System.Char[1];
[DNAFieldAttribute(5, "short", "hide", "short", 2, false)]
[DNAFieldAttribute(5, "short", "hide", "short", 2, false, 26)]
public short hide;
[DNAFieldAttribute(6, "float", "radius", "float", 4, false)]
[DNAFieldAttribute(6, "float", "radius", "float", 4, false, 28)]
public float radius;
[DNAFieldAttribute(7, "char", "_pad[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(7, "char", "_pad[4]", "System.Char[]", 4, false, 32)]
public char[] _pad = new System.Char[4];
public BPoint() {
this.vec = default;