Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

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