- Added auto generation of DNAClass attributes on file generation - Regenerated all files
28 lines
922 B
C#
28 lines
922 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(690, "NodeGeometrySubdivisionSurface")]
|
|
public struct NodeGeometrySubdivisionSurface {
|
|
[DNAFieldAttribute(0, "uchar", "uv_smooth", 1)]
|
|
public byte uv_smooth;
|
|
[DNAFieldAttribute(1, "uchar", "boundary_smooth", 1)]
|
|
public byte boundary_smooth;
|
|
public NodeGeometrySubdivisionSurface(byte uv_smooth, byte boundary_smooth) {
|
|
this.uv_smooth = uv_smooth;
|
|
this.boundary_smooth = boundary_smooth;
|
|
}
|
|
}
|
|
}
|