32 lines
1.0 KiB
C#
32 lines
1.0 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 struct ObjectLineArt {
|
|
public short usage;
|
|
public short flags;
|
|
public float crease_threshold;
|
|
public char intersection_priority;
|
|
public char[] _pad = new System.Char[7];
|
|
public ObjectLineArt(short usage, short flags, float crease_threshold, char intersection_priority, char[] _pad) {
|
|
this.usage = usage;
|
|
this.flags = flags;
|
|
this.crease_threshold = crease_threshold;
|
|
this.intersection_priority = intersection_priority;
|
|
this._pad = _pad;
|
|
}
|
|
}
|
|
}
|