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,69 +15,69 @@ namespace BlendFile.DNA {
[DNAClassAttribute(811, "ParticleEditSettings", 176)]
public class ParticleEditSettings {
[DNAFieldAttribute(0, "short", "flag", "short", 2, false, 0)]
[DNAFieldAttribute(2, "short", 0, "flag", "short", false, 0)]
public short flag;
[DNAFieldAttribute(1, "short", "totrekey", "short", 2, false, 2)]
[DNAFieldAttribute(2, "short", 1, "totrekey", "short", false, 2)]
public short totrekey;
[DNAFieldAttribute(2, "short", "totaddkey", "short", 2, false, 4)]
[DNAFieldAttribute(2, "short", 2, "totaddkey", "short", false, 4)]
public short totaddkey;
[DNAFieldAttribute(3, "short", "brushtype", "short", 2, false, 6)]
[DNAFieldAttribute(2, "short", 3, "brushtype", "short", false, 6)]
public short brushtype;
[DNAFieldAttribute(4, "ParticleBrushData", "brush[7]", "ParticleBrushData[]", 112, false, 8)]
[DNAFieldAttribute(112, "ParticleBrushData", 4, "brush[7]", "ParticleBrushData[]", false, 8)]
public ParticleBrushData[] brush = new ParticleBrushData[7];
[DNAFieldAttribute(5, "void", "*paintcursor", "void", 8, true, 120)]
public object ptr_paintcursor;
[DNAFieldAttribute(6, "float", "emitterdist", "float", 4, false, 128)]
[DNAFieldAttribute(8, "void", 5, "*paintcursor", "void", true, 120)]
public object paintcursor;
[DNAFieldAttribute(4, "float", 6, "emitterdist", "float", false, 128)]
public float emitterdist;
[DNAFieldAttribute(7, "char", "_pad0[4]", "System.Char[]", 4, false, 132)]
[DNAFieldAttribute(4, "char", 7, "_pad0[4]", "System.Char[]", false, 132)]
public char[] _pad0 = new System.Char[4];
[DNAFieldAttribute(8, "int", "selectmode", "int", 4, false, 136)]
[DNAFieldAttribute(4, "int", 8, "selectmode", "int", false, 136)]
public int selectmode;
[DNAFieldAttribute(9, "int", "edittype", "int", 4, false, 140)]
[DNAFieldAttribute(4, "int", 9, "edittype", "int", false, 140)]
public int edittype;
[DNAFieldAttribute(10, "int", "draw_step", "int", 4, false, 144)]
[DNAFieldAttribute(4, "int", 10, "draw_step", "int", false, 144)]
public int draw_step;
[DNAFieldAttribute(11, "int", "fade_frames", "int", 4, false, 148)]
[DNAFieldAttribute(4, "int", 11, "fade_frames", "int", false, 148)]
public int fade_frames;
[DNAFieldAttribute(12, "Scene", "*scene", "Scene", 8, true, 152)]
public Scene ptr_scene;
[DNAFieldAttribute(13, "Object", "*object", "Object", 8, true, 160)]
public Object ptr_object;
[DNAFieldAttribute(14, "Object", "*shape_object", "Object", 8, true, 168)]
public Object ptr_shape_object;
[DNAFieldAttribute(8, "Scene", 12, "*scene", "Scene", true, 152)]
public Scene scene;
[DNAFieldAttribute(8, "Object", 13, "*object", "Object", true, 160)]
public Object @object;
[DNAFieldAttribute(8, "Object", 14, "*shape_object", "Object", true, 168)]
public Object shape_object;
public ParticleEditSettings() {
this.flag = default;
this.totrekey = default;
this.totaddkey = default;
this.brushtype = default;
this.brush = default;
this.ptr_paintcursor = default;
this.paintcursor = default;
this.emitterdist = default;
this._pad0 = default;
this.selectmode = default;
this.edittype = default;
this.draw_step = default;
this.fade_frames = default;
this.ptr_scene = default;
this.ptr_object = default;
this.ptr_shape_object = default;
this.scene = default;
this.@object = default;
this.shape_object = default;
}
public ParticleEditSettings(short flag, short totrekey, short totaddkey, short brushtype, ParticleBrushData[] brush, object ptr_paintcursor, float emitterdist, char[] _pad0, int selectmode, int edittype, int draw_step, int fade_frames, Scene ptr_scene, Object ptr_object, Object ptr_shape_object) {
public ParticleEditSettings(short flag, short totrekey, short totaddkey, short brushtype, ParticleBrushData[] brush, object paintcursor, float emitterdist, char[] _pad0, int selectmode, int edittype, int draw_step, int fade_frames, Scene scene, Object @object, Object shape_object) {
this.flag = flag;
this.totrekey = totrekey;
this.totaddkey = totaddkey;
this.brushtype = brushtype;
this.brush = brush;
this.ptr_paintcursor = ptr_paintcursor;
this.paintcursor = paintcursor;
this.emitterdist = emitterdist;
this._pad0 = _pad0;
this.selectmode = selectmode;
this.edittype = edittype;
this.draw_step = draw_step;
this.fade_frames = fade_frames;
this.ptr_scene = ptr_scene;
this.ptr_object = ptr_object;
this.ptr_shape_object = ptr_shape_object;
this.scene = scene;
this.@object = @object;
this.shape_object = shape_object;
}
}
}