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,13 +11,20 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class DynamicPaintCanvasSettings {
[DNAFieldAttribute(0, "DynamicPaintModifierData", "*pmd", 144)]
public DynamicPaintModifierData ptr_pmd;
[DNAFieldAttribute(1, "ListBase", "surfaces", 16)]
public ListBase surfaces;
[DNAFieldAttribute(2, "short", "active_sur", 2)]
public short active_sur;
[DNAFieldAttribute(3, "short", "flags", 2)]
public short flags;
[DNAFieldAttribute(4, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(5, "char", "error[64]", 1)]
public char[] error = new System.Char[64];
public DynamicPaintCanvasSettings(DynamicPaintModifierData ptr_pmd, ListBase surfaces, short active_sur, short flags, char[] _pad, char[] error) {
this.ptr_pmd = ptr_pmd;