35 lines
1.3 KiB
C#
35 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;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class NodeGeometryAttributeCapture {
|
|
public sbyte data_type;
|
|
public sbyte 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(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;
|
|
}
|
|
}
|
|
}
|