Files
BlenderSharp/BlendFile/DNA/NodeGeometryAttributeCapture.cs

36 lines
1.3 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 BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 01/22/2025 16:57:57
namespace BlendFile.DNA {
public class NodeGeometryAttributeCapture {
public int8_t data_type;
public int8_t domain;
public char[] _pad = new System.Char[2];
public int next_identifier;
public NodeGeometryAttributeCaptureItem ptr_capture_items;
public int capture_items_num;
public int active_index;
public NodeGeometryAttributeCapture(int8_t data_type, int8_t 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;
}
}
}