Files
BlenderSharp/BlendFile/DNA/NodeGeometryForeachGeometryElementOutput.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

40 lines
1.8 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(744, "NodeGeometryForeachGeometryElementOutput")]
public struct NodeGeometryForeachGeometryElementOutput {
[DNAFieldAttribute(0, "NodeForeachGeometryElementInputItems", "input_items", 24)]
public NodeForeachGeometryElementInputItems input_items;
[DNAFieldAttribute(1, "NodeForeachGeometryElementMainItems", "main_items", 24)]
public NodeForeachGeometryElementMainItems main_items;
[DNAFieldAttribute(2, "NodeForeachGeometryElementGenerationItems", "generation_items", 24)]
public NodeForeachGeometryElementGenerationItems generation_items;
[DNAFieldAttribute(3, "int", "inspection_index", 4)]
public int inspection_index;
[DNAFieldAttribute(4, "uchar", "domain", 1)]
public byte domain;
[DNAFieldAttribute(5, "char", "_pad[3]", 1)]
public char[] _pad = new System.Char[3];
public NodeGeometryForeachGeometryElementOutput(NodeForeachGeometryElementInputItems input_items, NodeForeachGeometryElementMainItems main_items, NodeForeachGeometryElementGenerationItems generation_items, int inspection_index, byte domain, char[] _pad) {
this.input_items = input_items;
this.main_items = main_items;
this.generation_items = generation_items;
this.inspection_index = inspection_index;
this.domain = domain;
this._pad = _pad;
}
}
}