Files
BlenderSharp/BlendFile/DNA/GP_Sculpt_Settings.cs

56 lines
2.4 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 {
using BlendFile;
[DNAClassAttribute(821, "GP_Sculpt_Settings", 80)]
public class GP_Sculpt_Settings {
[DNAFieldAttribute(0, "void", "*paintcursor", "void", 8, true, 0)]
public object ptr_paintcursor;
[DNAFieldAttribute(1, "int", "flag", "int", 4, false, 8)]
public int flag;
[DNAFieldAttribute(2, "int", "lock_axis", "int", 4, false, 12)]
public int lock_axis;
[DNAFieldAttribute(3, "float", "isect_threshold", "float", 4, false, 16)]
public float isect_threshold;
[DNAFieldAttribute(4, "char", "_pad[4]", "System.Char[]", 4, false, 20)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(5, "CurveMapping", "*cur_falloff", "CurveMapping", 8, true, 24)]
public CurveMapping ptr_cur_falloff;
[DNAFieldAttribute(6, "CurveMapping", "*cur_primitive", "CurveMapping", 8, true, 32)]
public CurveMapping ptr_cur_primitive;
[DNAFieldAttribute(7, "GP_Sculpt_Guide", "guide", "GP_Sculpt_Guide", 40, false, 40)]
public GP_Sculpt_Guide guide;
public GP_Sculpt_Settings() {
this.ptr_paintcursor = default;
this.flag = default;
this.lock_axis = default;
this.isect_threshold = default;
this._pad = default;
this.ptr_cur_falloff = default;
this.ptr_cur_primitive = default;
this.guide = default;
}
public GP_Sculpt_Settings(object ptr_paintcursor, int flag, int lock_axis, float isect_threshold, char[] _pad, CurveMapping ptr_cur_falloff, CurveMapping ptr_cur_primitive, GP_Sculpt_Guide guide) {
this.ptr_paintcursor = ptr_paintcursor;
this.flag = flag;
this.lock_axis = lock_axis;
this.isect_threshold = isect_threshold;
this._pad = _pad;
this.ptr_cur_falloff = ptr_cur_falloff;
this.ptr_cur_primitive = ptr_cur_primitive;
this.guide = guide;
}
}
}