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

44 lines
1.5 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(345, "ViewLayerAOV", 88)]
public class ViewLayerAOV {
[DNAFieldAttribute(8, "ViewLayerAOV", 0, "*next", "ViewLayerAOV", true, 0)]
public ViewLayerAOV next;
[DNAFieldAttribute(8, "ViewLayerAOV", 1, "*prev", "ViewLayerAOV", true, 8)]
public ViewLayerAOV prev;
[DNAFieldAttribute(64, "char", 2, "name[64]", "System.Char[]", false, 16)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(4, "int", 3, "flag", "int", false, 80)]
public int flag;
[DNAFieldAttribute(4, "int", 4, "type", "int", false, 84)]
public int type;
public ViewLayerAOV() {
this.next = default;
this.prev = default;
this.name = default;
this.flag = default;
this.type = default;
}
public ViewLayerAOV(ViewLayerAOV next, ViewLayerAOV prev, char[] name, int flag, int type) {
this.next = next;
this.prev = prev;
this.name = name;
this.flag = flag;
this.type = type;
}
}
}