Files
BlenderSharp/BlendFile/DNA/NodeCMPCombSepColor.cs
2025-03-04 18:48:04 +01:00

32 lines
988 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(622, "NodeCMPCombSepColor", 2)]
public class NodeCMPCombSepColor {
[DNAFieldAttribute(1, "uchar", 0, "mode", "uchar", false, 0)]
public byte mode;
[DNAFieldAttribute(1, "uchar", 1, "ycc_mode", "uchar", false, 1)]
public byte ycc_mode;
public NodeCMPCombSepColor() {
this.mode = default;
this.ycc_mode = default;
}
public NodeCMPCombSepColor(byte mode, byte ycc_mode) {
this.mode = mode;
this.ycc_mode = ycc_mode;
}
}
}