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,43 +15,43 @@ namespace BlendFile.DNA {
[DNAClassAttribute(795, "RigidBodyWorld", 88)]
public class RigidBodyWorld {
[DNAFieldAttribute(0, "EffectorWeights", "*effector_weights", "EffectorWeights", 8, true, 0)]
public EffectorWeights ptr_effector_weights;
[DNAFieldAttribute(1, "Collection", "*group", "Collection", 8, true, 8)]
public Collection ptr_group;
[DNAFieldAttribute(2, "Object", "**objects", "Object", 8, true, 16)]
public Object ptr_ptr_objects;
[DNAFieldAttribute(3, "Collection", "*constraints", "Collection", 8, true, 24)]
public Collection ptr_constraints;
[DNAFieldAttribute(4, "char", "_pad[4]", "System.Char[]", 4, false, 32)]
[DNAFieldAttribute(8, "EffectorWeights", 0, "*effector_weights", "EffectorWeights", true, 0)]
public EffectorWeights effector_weights;
[DNAFieldAttribute(8, "Collection", 1, "*group", "Collection", true, 8)]
public Collection group;
[DNAFieldAttribute(8, "Object", 2, "**objects", "Object", true, 16)]
public Object objects;
[DNAFieldAttribute(8, "Collection", 3, "*constraints", "Collection", true, 24)]
public Collection constraints;
[DNAFieldAttribute(4, "char", 4, "_pad[4]", "System.Char[]", false, 32)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(5, "float", "ltime", "float", 4, false, 36)]
[DNAFieldAttribute(4, "float", 5, "ltime", "float", false, 36)]
public float ltime;
[DNAFieldAttribute(6, "RigidBodyWorld_Shared", "*shared", "RigidBodyWorld_Shared", 8, true, 40)]
public RigidBodyWorld_Shared ptr_shared;
[DNAFieldAttribute(7, "PointCache", "*pointcache", "PointCache", 8, true, 48)]
public PointCache ptr_pointcache;
[DNAFieldAttribute(8, "ListBase", "ptcaches", "ListBase", 16, false, 56)]
[DNAFieldAttribute(8, "RigidBodyWorld_Shared", 6, "*shared", "RigidBodyWorld_Shared", true, 40)]
public RigidBodyWorld_Shared shared;
[DNAFieldAttribute(8, "PointCache", 7, "*pointcache", "PointCache", true, 48)]
public PointCache pointcache;
[DNAFieldAttribute(16, "ListBase", 8, "ptcaches", "ListBase", false, 56)]
public ListBase ptcaches;
[DNAFieldAttribute(9, "int", "numbodies", "int", 4, false, 72)]
[DNAFieldAttribute(4, "int", 9, "numbodies", "int", false, 72)]
public int numbodies;
[DNAFieldAttribute(10, "short", "steps_per_second", "short", 2, false, 76)]
[DNAFieldAttribute(2, "short", 10, "steps_per_second", "short", false, 76)]
public short steps_per_second;
[DNAFieldAttribute(11, "short", "num_solver_iterations", "short", 2, false, 78)]
[DNAFieldAttribute(2, "short", 11, "num_solver_iterations", "short", false, 78)]
public short num_solver_iterations;
[DNAFieldAttribute(12, "int", "flag", "int", 4, false, 80)]
[DNAFieldAttribute(4, "int", 12, "flag", "int", false, 80)]
public int flag;
[DNAFieldAttribute(13, "float", "time_scale", "float", 4, false, 84)]
[DNAFieldAttribute(4, "float", 13, "time_scale", "float", false, 84)]
public float time_scale;
public RigidBodyWorld() {
this.ptr_effector_weights = default;
this.ptr_group = default;
this.ptr_ptr_objects = default;
this.ptr_constraints = default;
this.effector_weights = default;
this.group = default;
this.objects = default;
this.constraints = default;
this._pad = default;
this.ltime = default;
this.ptr_shared = default;
this.ptr_pointcache = default;
this.shared = default;
this.pointcache = default;
this.ptcaches = default;
this.numbodies = default;
this.steps_per_second = default;
@@ -59,15 +59,15 @@ namespace BlendFile.DNA {
this.flag = default;
this.time_scale = default;
}
public RigidBodyWorld(EffectorWeights ptr_effector_weights, Collection ptr_group, Object ptr_ptr_objects, Collection ptr_constraints, char[] _pad, float ltime, RigidBodyWorld_Shared ptr_shared, PointCache ptr_pointcache, ListBase ptcaches, int numbodies, short steps_per_second, short num_solver_iterations, int flag, float time_scale) {
this.ptr_effector_weights = ptr_effector_weights;
this.ptr_group = ptr_group;
this.ptr_ptr_objects = ptr_ptr_objects;
this.ptr_constraints = ptr_constraints;
public RigidBodyWorld(EffectorWeights effector_weights, Collection group, Object objects, Collection constraints, char[] _pad, float ltime, RigidBodyWorld_Shared shared, PointCache pointcache, ListBase ptcaches, int numbodies, short steps_per_second, short num_solver_iterations, int flag, float time_scale) {
this.effector_weights = effector_weights;
this.group = group;
this.objects = objects;
this.constraints = constraints;
this._pad = _pad;
this.ltime = ltime;
this.ptr_shared = ptr_shared;
this.ptr_pointcache = ptr_pointcache;
this.shared = shared;
this.pointcache = pointcache;
this.ptcaches = ptcaches;
this.numbodies = numbodies;
this.steps_per_second = steps_per_second;