Files
BlenderSharp/BlendFile/DNA/SubsurfModifierData.cs

44 lines
1.6 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 01/22/2025 16:57:57
namespace BlendFile.DNA {
public class SubsurfModifierData {
public ModifierData modifier;
public short subdivType;
public short levels;
public short renderLevels;
public short flags;
public short uv_smooth;
public short quality;
public short boundary_smooth;
public char[] _pad = new System.Char[2];
public object ptr_emCache;
public object ptr_mCache;
public SubsurfModifierData(ModifierData modifier, short subdivType, short levels, short renderLevels, short flags, short uv_smooth, short quality, short boundary_smooth, char[] _pad, object ptr_emCache, object ptr_mCache) {
this.modifier = modifier;
this.subdivType = subdivType;
this.levels = levels;
this.renderLevels = renderLevels;
this.flags = flags;
this.uv_smooth = uv_smooth;
this.quality = quality;
this.boundary_smooth = boundary_smooth;
this._pad = _pad;
this.ptr_emCache = ptr_emCache;
this.ptr_mCache = ptr_mCache;
}
}
}