28 lines
876 B
C#
28 lines
876 B
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(822, "GP_Interpolate_Settings", 8)]
|
|
public class GP_Interpolate_Settings {
|
|
[DNAFieldAttribute(8, "CurveMapping", 0, "*custom_ipo", "CurveMapping", true, 0)]
|
|
public CurveMapping custom_ipo;
|
|
public GP_Interpolate_Settings() {
|
|
this.custom_ipo = default;
|
|
}
|
|
public GP_Interpolate_Settings(CurveMapping custom_ipo) {
|
|
this.custom_ipo = custom_ipo;
|
|
}
|
|
}
|
|
}
|