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,33 +15,33 @@ namespace BlendFile.DNA {
[DNAClassAttribute(782, "ParticleDupliWeight", 32)]
public class ParticleDupliWeight {
[DNAFieldAttribute(0, "ParticleDupliWeight", "*next", "ParticleDupliWeight", 8, true, 0)]
public ParticleDupliWeight ptr_next;
[DNAFieldAttribute(1, "ParticleDupliWeight", "*prev", "ParticleDupliWeight", 8, true, 8)]
public ParticleDupliWeight ptr_prev;
[DNAFieldAttribute(2, "Object", "*ob", "Object", 8, true, 16)]
public Object ptr_ob;
[DNAFieldAttribute(3, "short", "count", "short", 2, false, 24)]
[DNAFieldAttribute(8, "ParticleDupliWeight", 0, "*next", "ParticleDupliWeight", true, 0)]
public ParticleDupliWeight next;
[DNAFieldAttribute(8, "ParticleDupliWeight", 1, "*prev", "ParticleDupliWeight", true, 8)]
public ParticleDupliWeight prev;
[DNAFieldAttribute(8, "Object", 2, "*ob", "Object", true, 16)]
public Object ob;
[DNAFieldAttribute(2, "short", 3, "count", "short", false, 24)]
public short count;
[DNAFieldAttribute(4, "short", "flag", "short", 2, false, 26)]
[DNAFieldAttribute(2, "short", 4, "flag", "short", false, 26)]
public short flag;
[DNAFieldAttribute(5, "short", "index", "short", 2, false, 28)]
[DNAFieldAttribute(2, "short", 5, "index", "short", false, 28)]
public short index;
[DNAFieldAttribute(6, "char", "_pad0[2]", "System.Char[]", 2, false, 30)]
[DNAFieldAttribute(2, "char", 6, "_pad0[2]", "System.Char[]", false, 30)]
public char[] _pad0 = new System.Char[2];
public ParticleDupliWeight() {
this.ptr_next = default;
this.ptr_prev = default;
this.ptr_ob = default;
this.next = default;
this.prev = default;
this.ob = default;
this.count = default;
this.flag = default;
this.index = default;
this._pad0 = default;
}
public ParticleDupliWeight(ParticleDupliWeight ptr_next, ParticleDupliWeight ptr_prev, Object ptr_ob, short count, short flag, short index, char[] _pad0) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_ob = ptr_ob;
public ParticleDupliWeight(ParticleDupliWeight next, ParticleDupliWeight prev, Object ob, short count, short flag, short index, char[] _pad0) {
this.next = next;
this.prev = prev;
this.ob = ob;
this.count = count;
this.flag = flag;
this.index = index;