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,16 +15,16 @@ namespace BlendFile.DNA {
[DNAClassAttribute(759, "SoftBody_Shared", 24)]
public class SoftBody_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;
public SoftBody_Shared() {
this.ptr_pointcache = default;
this.pointcache = default;
this.ptcaches = default;
}
public SoftBody_Shared(PointCache ptr_pointcache, ListBase ptcaches) {
this.ptr_pointcache = ptr_pointcache;
public SoftBody_Shared(PointCache pointcache, ListBase ptcaches) {
this.pointcache = pointcache;
this.ptcaches = ptcaches;
}
}