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,19 +11,32 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct MultiresModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", 120)]
public ModifierData modifier;
[DNAFieldAttribute(1, "char", "lvl", 1)]
public char lvl;
[DNAFieldAttribute(2, "char", "sculptlvl", 1)]
public char sculptlvl;
[DNAFieldAttribute(3, "char", "renderlvl", 1)]
public char renderlvl;
[DNAFieldAttribute(4, "char", "totlvl", 1)]
public char totlvl;
[DNAFieldAttribute(5, "char", "simple", 1)]
public char simple;
[DNAFieldAttribute(6, "char", "flags", 1)]
public char flags;
[DNAFieldAttribute(7, "char", "_pad[2]", 1)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(8, "short", "quality", 2)]
public short quality;
[DNAFieldAttribute(9, "short", "uv_smooth", 2)]
public short uv_smooth;
[DNAFieldAttribute(10, "short", "boundary_smooth", 2)]
public short boundary_smooth;
[DNAFieldAttribute(11, "char", "_pad2[2]", 1)]
public char[] _pad2 = new System.Char[2];
public MultiresModifierData(ModifierData modifier, char lvl, char sculptlvl, char renderlvl, char totlvl, char simple, char flags, char[] _pad, short quality, short uv_smooth, short boundary_smooth, char[] _pad2) {
this.modifier = modifier;