Files
BlenderSharp/BlendFile/DNA/NodeGeometryAttributeCapture.cs
2025-01-22 20:24:55 +01:00

42 lines
1.7 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;
public class NodeGeometryAttributeCapture {
[DNAFieldAttribute(0, "int8_t", "data_type", 1)]
public sbyte data_type;
[DNAFieldAttribute(1, "int8_t", "domain", 1)]
public sbyte domain;
[DNAFieldAttribute(2, "char", "_pad[2]", 1)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(3, "int", "next_identifier", 4)]
public int next_identifier;
[DNAFieldAttribute(4, "NodeGeometryAttributeCaptureItem", "*capture_items", 16)]
public NodeGeometryAttributeCaptureItem ptr_capture_items;
[DNAFieldAttribute(5, "int", "capture_items_num", 4)]
public int capture_items_num;
[DNAFieldAttribute(6, "int", "active_index", 4)]
public int active_index;
public NodeGeometryAttributeCapture(sbyte data_type, sbyte domain, char[] _pad, int next_identifier, NodeGeometryAttributeCaptureItem ptr_capture_items, int capture_items_num, int active_index) {
this.data_type = data_type;
this.domain = domain;
this._pad = _pad;
this.next_identifier = next_identifier;
this.ptr_capture_items = ptr_capture_items;
this.capture_items_num = capture_items_num;
this.active_index = active_index;
}
}
}