52 lines
2.2 KiB
C#
52 lines
2.2 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(720, "NodeGeometryAttributeCapture", 24)]
|
|
public class NodeGeometryAttributeCapture {
|
|
[DNAFieldAttribute(1, "int8_t", 0, "data_type", "int8_t", false, 0)]
|
|
public sbyte data_type;
|
|
[DNAFieldAttribute(1, "int8_t", 1, "domain", "int8_t", false, 1)]
|
|
public sbyte domain;
|
|
[DNAFieldAttribute(2, "char", 2, "_pad[2]", "System.Char[]", false, 2)]
|
|
public char[] _pad = new System.Char[2];
|
|
[DNAFieldAttribute(4, "int", 3, "next_identifier", "int", false, 4)]
|
|
public int next_identifier;
|
|
[DNAFieldAttribute(8, "NodeGeometryAttributeCaptureItem", 4, "*capture_items", "NodeGeometryAttributeCaptureItem", true, 8)]
|
|
public NodeGeometryAttributeCaptureItem capture_items;
|
|
[DNAFieldAttribute(4, "int", 5, "capture_items_num", "int", false, 16)]
|
|
public int capture_items_num;
|
|
[DNAFieldAttribute(4, "int", 6, "active_index", "int", false, 20)]
|
|
public int active_index;
|
|
public NodeGeometryAttributeCapture() {
|
|
this.data_type = default;
|
|
this.domain = default;
|
|
this._pad = default;
|
|
this.next_identifier = default;
|
|
this.capture_items = default;
|
|
this.capture_items_num = default;
|
|
this.active_index = default;
|
|
}
|
|
public NodeGeometryAttributeCapture(sbyte data_type, sbyte domain, char[] _pad, int next_identifier, NodeGeometryAttributeCaptureItem 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.capture_items = capture_items;
|
|
this.capture_items_num = capture_items_num;
|
|
this.active_index = active_index;
|
|
}
|
|
}
|
|
}
|