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,41 +15,41 @@ namespace BlendFile.DNA {
[DNAClassAttribute(770, "RigidBodyOb", 88)]
public class RigidBodyOb {
[DNAFieldAttribute(0, "short", "type", "short", 2, false)]
[DNAFieldAttribute(0, "short", "type", "short", 2, false, 0)]
public short type;
[DNAFieldAttribute(1, "short", "shape", "short", 2, false)]
[DNAFieldAttribute(1, "short", "shape", "short", 2, false, 2)]
public short shape;
[DNAFieldAttribute(2, "int", "flag", "int", 4, false)]
[DNAFieldAttribute(2, "int", "flag", "int", 4, false, 4)]
public int flag;
[DNAFieldAttribute(3, "int", "col_groups", "int", 4, false)]
[DNAFieldAttribute(3, "int", "col_groups", "int", 4, false, 8)]
public int col_groups;
[DNAFieldAttribute(4, "short", "mesh_source", "short", 2, false)]
[DNAFieldAttribute(4, "short", "mesh_source", "short", 2, false, 12)]
public short mesh_source;
[DNAFieldAttribute(5, "char", "_pad[2]", "System.Char[]", 2, false)]
[DNAFieldAttribute(5, "char", "_pad[2]", "System.Char[]", 2, false, 14)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(6, "float", "mass", "float", 4, false)]
[DNAFieldAttribute(6, "float", "mass", "float", 4, false, 16)]
public float mass;
[DNAFieldAttribute(7, "float", "friction", "float", 4, false)]
[DNAFieldAttribute(7, "float", "friction", "float", 4, false, 20)]
public float friction;
[DNAFieldAttribute(8, "float", "restitution", "float", 4, false)]
[DNAFieldAttribute(8, "float", "restitution", "float", 4, false, 24)]
public float restitution;
[DNAFieldAttribute(9, "float", "margin", "float", 4, false)]
[DNAFieldAttribute(9, "float", "margin", "float", 4, false, 28)]
public float margin;
[DNAFieldAttribute(10, "float", "lin_damping", "float", 4, false)]
[DNAFieldAttribute(10, "float", "lin_damping", "float", 4, false, 32)]
public float lin_damping;
[DNAFieldAttribute(11, "float", "ang_damping", "float", 4, false)]
[DNAFieldAttribute(11, "float", "ang_damping", "float", 4, false, 36)]
public float ang_damping;
[DNAFieldAttribute(12, "float", "lin_sleep_thresh", "float", 4, false)]
[DNAFieldAttribute(12, "float", "lin_sleep_thresh", "float", 4, false, 40)]
public float lin_sleep_thresh;
[DNAFieldAttribute(13, "float", "ang_sleep_thresh", "float", 4, false)]
[DNAFieldAttribute(13, "float", "ang_sleep_thresh", "float", 4, false, 44)]
public float ang_sleep_thresh;
[DNAFieldAttribute(14, "float", "orn[4]", "System.Single[]", 16, false)]
[DNAFieldAttribute(14, "float", "orn[4]", "System.Single[]", 16, false, 48)]
public float[] orn = new System.Single[4];
[DNAFieldAttribute(15, "float", "pos[3]", "System.Single[]", 12, false)]
[DNAFieldAttribute(15, "float", "pos[3]", "System.Single[]", 12, false, 64)]
public float[] pos = new System.Single[3];
[DNAFieldAttribute(16, "char", "_pad1[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(16, "char", "_pad1[4]", "System.Char[]", 4, false, 76)]
public char[] _pad1 = new System.Char[4];
[DNAFieldAttribute(17, "RigidBodyOb_Shared", "*shared", "RigidBodyOb_Shared", 8, true)]
[DNAFieldAttribute(17, "RigidBodyOb_Shared", "*shared", "RigidBodyOb_Shared", 8, true, 80)]
public RigidBodyOb_Shared ptr_shared;
public RigidBodyOb() {
this.type = default;