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,29 +15,29 @@ namespace BlendFile.DNA {
[DNAClassAttribute(562, "bActionModifier", 72)]
public class bActionModifier {
[DNAFieldAttribute(0, "bActionModifier", "*next", "bActionModifier", 8, true, 0)]
public bActionModifier ptr_next;
[DNAFieldAttribute(1, "bActionModifier", "*prev", "bActionModifier", 8, true, 8)]
public bActionModifier ptr_prev;
[DNAFieldAttribute(2, "short", "type", "short", 2, false, 16)]
[DNAFieldAttribute(8, "bActionModifier", 0, "*next", "bActionModifier", true, 0)]
public bActionModifier next;
[DNAFieldAttribute(8, "bActionModifier", 1, "*prev", "bActionModifier", true, 8)]
public bActionModifier prev;
[DNAFieldAttribute(2, "short", 2, "type", "short", false, 16)]
public short type;
[DNAFieldAttribute(3, "short", "flag", "short", 2, false, 18)]
[DNAFieldAttribute(2, "short", 3, "flag", "short", false, 18)]
public short flag;
[DNAFieldAttribute(4, "char", "channel[32]", "System.Char[]", 32, false, 20)]
[DNAFieldAttribute(32, "char", 4, "channel[32]", "System.Char[]", false, 20)]
public char[] channel = new System.Char[32];
[DNAFieldAttribute(5, "float", "noisesize", "float", 4, false, 52)]
[DNAFieldAttribute(4, "float", 5, "noisesize", "float", false, 52)]
public float noisesize;
[DNAFieldAttribute(6, "float", "turbul", "float", 4, false, 56)]
[DNAFieldAttribute(4, "float", 6, "turbul", "float", false, 56)]
public float turbul;
[DNAFieldAttribute(7, "short", "channels", "short", 2, false, 60)]
[DNAFieldAttribute(2, "short", 7, "channels", "short", false, 60)]
public short channels;
[DNAFieldAttribute(8, "short", "no_rot_axis", "short", 2, false, 62)]
[DNAFieldAttribute(2, "short", 8, "no_rot_axis", "short", false, 62)]
public short no_rot_axis;
[DNAFieldAttribute(9, "Object", "*ob", "Object", 8, true, 64)]
public Object ptr_ob;
[DNAFieldAttribute(8, "Object", 9, "*ob", "Object", true, 64)]
public Object ob;
public bActionModifier() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.type = default;
this.flag = default;
this.channel = default;
@@ -45,11 +45,11 @@ namespace BlendFile.DNA {
this.turbul = default;
this.channels = default;
this.no_rot_axis = default;
this.ptr_ob = default;
this.ob = default;
}
public bActionModifier(bActionModifier ptr_next, bActionModifier ptr_prev, short type, short flag, char[] channel, float noisesize, float turbul, short channels, short no_rot_axis, Object ptr_ob) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public bActionModifier(bActionModifier next, bActionModifier prev, short type, short flag, char[] channel, float noisesize, float turbul, short channels, short no_rot_axis, Object ob) {
this.next = next;
this.prev = prev;
this.type = type;
this.flag = flag;
this.channel = channel;
@@ -57,7 +57,7 @@ namespace BlendFile.DNA {
this.turbul = turbul;
this.channels = channels;
this.no_rot_axis = no_rot_axis;
this.ptr_ob = ptr_ob;
this.ob = ob;
}
}
}