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,39 +15,39 @@ namespace BlendFile.DNA {
[DNAClassAttribute(478, "ParticleInstanceModifierData", 304)]
public class ParticleInstanceModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false, 0)]
[DNAFieldAttribute(120, "ModifierData", 0, "modifier", "ModifierData", false, 0)]
public ModifierData modifier;
[DNAFieldAttribute(1, "Object", "*ob", "Object", 8, true, 120)]
public Object ptr_ob;
[DNAFieldAttribute(2, "short", "psys", "short", 2, false, 128)]
[DNAFieldAttribute(8, "Object", 1, "*ob", "Object", true, 120)]
public Object ob;
[DNAFieldAttribute(2, "short", 2, "psys", "short", false, 128)]
public short psys;
[DNAFieldAttribute(3, "short", "flag", "short", 2, false, 130)]
[DNAFieldAttribute(2, "short", 3, "flag", "short", false, 130)]
public short flag;
[DNAFieldAttribute(4, "short", "axis", "short", 2, false, 132)]
[DNAFieldAttribute(2, "short", 4, "axis", "short", false, 132)]
public short axis;
[DNAFieldAttribute(5, "short", "space", "short", 2, false, 134)]
[DNAFieldAttribute(2, "short", 5, "space", "short", false, 134)]
public short space;
[DNAFieldAttribute(6, "float", "position", "float", 4, false, 136)]
[DNAFieldAttribute(4, "float", 6, "position", "float", false, 136)]
public float position;
[DNAFieldAttribute(7, "float", "random_position", "float", 4, false, 140)]
[DNAFieldAttribute(4, "float", 7, "random_position", "float", false, 140)]
public float random_position;
[DNAFieldAttribute(8, "float", "rotation", "float", 4, false, 144)]
[DNAFieldAttribute(4, "float", 8, "rotation", "float", false, 144)]
public float rotation;
[DNAFieldAttribute(9, "float", "random_rotation", "float", 4, false, 148)]
[DNAFieldAttribute(4, "float", 9, "random_rotation", "float", false, 148)]
public float random_rotation;
[DNAFieldAttribute(10, "float", "particle_amount", "float", 4, false, 152)]
[DNAFieldAttribute(4, "float", 10, "particle_amount", "float", false, 152)]
public float particle_amount;
[DNAFieldAttribute(11, "float", "particle_offset", "float", 4, false, 156)]
[DNAFieldAttribute(4, "float", 11, "particle_offset", "float", false, 156)]
public float particle_offset;
[DNAFieldAttribute(12, "char", "index_layer_name[68]", "System.Char[]", 68, false, 160)]
[DNAFieldAttribute(68, "char", 12, "index_layer_name[68]", "System.Char[]", false, 160)]
public char[] index_layer_name = new System.Char[68];
[DNAFieldAttribute(13, "char", "value_layer_name[68]", "System.Char[]", 68, false, 228)]
[DNAFieldAttribute(68, "char", 13, "value_layer_name[68]", "System.Char[]", false, 228)]
public char[] value_layer_name = new System.Char[68];
[DNAFieldAttribute(14, "void", "*_pad1", "void", 8, true, 296)]
public object ptr__pad1;
[DNAFieldAttribute(8, "void", 14, "*_pad1", "void", true, 296)]
public object _pad1;
public ParticleInstanceModifierData() {
this.modifier = default;
this.ptr_ob = default;
this.ob = default;
this.psys = default;
this.flag = default;
this.axis = default;
@@ -60,11 +60,11 @@ namespace BlendFile.DNA {
this.particle_offset = default;
this.index_layer_name = default;
this.value_layer_name = default;
this.ptr__pad1 = default;
this._pad1 = default;
}
public ParticleInstanceModifierData(ModifierData modifier, Object ptr_ob, short psys, short flag, short axis, short space, float position, float random_position, float rotation, float random_rotation, float particle_amount, float particle_offset, char[] index_layer_name, char[] value_layer_name, object ptr__pad1) {
public ParticleInstanceModifierData(ModifierData modifier, Object ob, short psys, short flag, short axis, short space, float position, float random_position, float rotation, float random_rotation, float particle_amount, float particle_offset, char[] index_layer_name, char[] value_layer_name, object _pad1) {
this.modifier = modifier;
this.ptr_ob = ptr_ob;
this.ob = ob;
this.psys = psys;
this.flag = flag;
this.axis = axis;
@@ -77,7 +77,7 @@ namespace BlendFile.DNA {
this.particle_offset = particle_offset;
this.index_layer_name = index_layer_name;
this.value_layer_name = value_layer_name;
this.ptr__pad1 = ptr__pad1;
this._pad1 = _pad1;
}
}
}