36 lines
1.2 KiB
C#
36 lines
1.2 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 System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(654, "NodeShaderHairPrincipled", 8)]
|
|
public class NodeShaderHairPrincipled {
|
|
[DNAFieldAttribute(2, "short", 0, "model", "short", false, 0)]
|
|
public short model;
|
|
[DNAFieldAttribute(2, "short", 1, "parametrization", "short", false, 2)]
|
|
public short parametrization;
|
|
[DNAArrayAttribute(4, "char", 2, "_pad[4]", "System.Char[]", 4, false, 4)]
|
|
public char[] _pad = new System.Char[4];
|
|
public NodeShaderHairPrincipled() {
|
|
this.model = default;
|
|
this.parametrization = default;
|
|
this._pad = default;
|
|
}
|
|
public NodeShaderHairPrincipled(short model, short parametrization, char[] _pad) {
|
|
this.model = model;
|
|
this.parametrization = parametrization;
|
|
this._pad = _pad;
|
|
}
|
|
}
|
|
}
|