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,21 +15,21 @@ namespace BlendFile.DNA {
[DNAClassAttribute(794, "RigidBodyWorld_Shared", 32)]
public class RigidBodyWorld_Shared {
[DNAFieldAttribute(0, "PointCache", "*pointcache", "PointCache", 8, true, 0)]
public PointCache ptr_pointcache;
[DNAFieldAttribute(1, "ListBase", "ptcaches", "ListBase", 16, false, 8)]
[DNAFieldAttribute(8, "PointCache", 0, "*pointcache", "PointCache", true, 0)]
public PointCache pointcache;
[DNAFieldAttribute(16, "ListBase", 1, "ptcaches", "ListBase", false, 8)]
public ListBase ptcaches;
[DNAFieldAttribute(2, "void", "*physics_world", "void", 8, true, 24)]
public object ptr_physics_world;
[DNAFieldAttribute(8, "void", 2, "*physics_world", "void", true, 24)]
public object physics_world;
public RigidBodyWorld_Shared() {
this.ptr_pointcache = default;
this.pointcache = default;
this.ptcaches = default;
this.ptr_physics_world = default;
this.physics_world = default;
}
public RigidBodyWorld_Shared(PointCache ptr_pointcache, ListBase ptcaches, object ptr_physics_world) {
this.ptr_pointcache = ptr_pointcache;
public RigidBodyWorld_Shared(PointCache pointcache, ListBase ptcaches, object physics_world) {
this.pointcache = pointcache;
this.ptcaches = ptcaches;
this.ptr_physics_world = ptr_physics_world;
this.physics_world = physics_world;
}
}
}