Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,17 +11,28 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class ParticleSystemModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", 120)]
public ModifierData modifier;
[DNAFieldAttribute(1, "ParticleSystem", "*psys", 696)]
public ParticleSystem ptr_psys;
[DNAFieldAttribute(2, "Mesh", "*mesh_final", 1712)]
public Mesh ptr_mesh_final;
[DNAFieldAttribute(3, "Mesh", "*mesh_original", 1712)]
public Mesh ptr_mesh_original;
[DNAFieldAttribute(4, "int", "totdmvert", 4)]
public int totdmvert;
[DNAFieldAttribute(5, "int", "totdmedge", 4)]
public int totdmedge;
[DNAFieldAttribute(6, "int", "totdmface", 4)]
public int totdmface;
[DNAFieldAttribute(7, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(8, "char", "_pad[2]", 1)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(9, "void", "*_pad1", 0)]
public object ptr__pad1;
public ParticleSystemModifierData(ModifierData modifier, ParticleSystem ptr_psys, Mesh ptr_mesh_final, Mesh ptr_mesh_original, int totdmvert, int totdmedge, int totdmface, short flag, char[] _pad, object ptr__pad1) {
this.modifier = modifier;