Files
BlenderSharp/BlendFile/DNA/RemeshModifierData.cs
Samuele Lorefice 439cea385f Regenerated files
2025-01-22 18:11:19 +01:00

40 lines
1.3 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 System;
namespace BlendFile.DNA {
public struct RemeshModifierData {
public ModifierData modifier;
public float threshold;
public float scale;
public float hermite_num;
public char depth;
public char flag;
public char mode;
public char _pad;
public float voxel_size;
public float adaptivity;
public RemeshModifierData(ModifierData modifier, float threshold, float scale, float hermite_num, char depth, char flag, char mode, char _pad, float voxel_size, float adaptivity) {
this.modifier = modifier;
this.threshold = threshold;
this.scale = scale;
this.hermite_num = hermite_num;
this.depth = depth;
this.flag = flag;
this.mode = mode;
this._pad = _pad;
this.voxel_size = voxel_size;
this.adaptivity = adaptivity;
}
}
}