Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public struct MultiresModifierData {
public ModifierData modifier;
public char lvl;
public char sculptlvl;
public char renderlvl;
public char totlvl;
public char simple;
public char flags;
public char[] _pad = new System.Char[2];
public short quality;
public short uv_smooth;
public short boundary_smooth;
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;
this.lvl = lvl;
this.sculptlvl = sculptlvl;
this.renderlvl = renderlvl;
this.totlvl = totlvl;
this.simple = simple;
this.flags = flags;
this._pad = _pad;
this.quality = quality;
this.uv_smooth = uv_smooth;
this.boundary_smooth = boundary_smooth;
this._pad2 = _pad2;
}
}
}