//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using BlendFile.CompatTypes; using System; 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; } } }