Files
BlenderSharp/BlendFile/DNA/NodeGeometrySetCurveHandlePositions.cs

28 lines
837 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(701, "NodeGeometrySetCurveHandlePositions")]
public struct NodeGeometrySetCurveHandlePositions {
[DNAFieldAttribute(0, "uchar", "mode", 1)]
public byte mode;
public NodeGeometrySetCurveHandlePositions() {
this.mode = default;
}
public NodeGeometrySetCurveHandlePositions(byte mode) {
this.mode = mode;
}
}
}