Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,25 +11,44 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class RigidBodyOb {
[DNAFieldAttribute(0, "short", "type", 2)]
public short type;
[DNAFieldAttribute(1, "short", "shape", 2)]
public short shape;
[DNAFieldAttribute(2, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(3, "int", "col_groups", 4)]
public int col_groups;
[DNAFieldAttribute(4, "short", "mesh_source", 2)]
public short mesh_source;
[DNAFieldAttribute(5, "char", "_pad[2]", 1)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(6, "float", "mass", 4)]
public float mass;
[DNAFieldAttribute(7, "float", "friction", 4)]
public float friction;
[DNAFieldAttribute(8, "float", "restitution", 4)]
public float restitution;
[DNAFieldAttribute(9, "float", "margin", 4)]
public float margin;
[DNAFieldAttribute(10, "float", "lin_damping", 4)]
public float lin_damping;
[DNAFieldAttribute(11, "float", "ang_damping", 4)]
public float ang_damping;
[DNAFieldAttribute(12, "float", "lin_sleep_thresh", 4)]
public float lin_sleep_thresh;
[DNAFieldAttribute(13, "float", "ang_sleep_thresh", 4)]
public float ang_sleep_thresh;
[DNAFieldAttribute(14, "float", "orn[4]", 4)]
public float[] orn = new System.Single[4];
[DNAFieldAttribute(15, "float", "pos[3]", 4)]
public float[] pos = new System.Single[3];
[DNAFieldAttribute(16, "char", "_pad1[4]", 1)]
public char[] _pad1 = new System.Char[4];
[DNAFieldAttribute(17, "RigidBodyOb_Shared", "*shared", 0)]
public RigidBodyOb_Shared ptr_shared;
public RigidBodyOb(
short type,