80 lines
3.5 KiB
C#
80 lines
3.5 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(518, "NodesModifierBake")]
|
|
public class NodesModifierBake {
|
|
[DNAFieldAttribute(0, "int", "id", "int", 4, false)]
|
|
public int id;
|
|
[DNAFieldAttribute(1, "int", "flag", "int", 4, false)]
|
|
public int flag;
|
|
[DNAFieldAttribute(2, "uchar", "bake_mode", "uchar", 1, false)]
|
|
public byte bake_mode;
|
|
[DNAFieldAttribute(3, "int8_t", "bake_target", "int8_t", 1, false)]
|
|
public sbyte bake_target;
|
|
[DNAFieldAttribute(4, "char", "_pad[6]", "System.Char[]", 6, false)]
|
|
public char[] _pad = new System.Char[6];
|
|
[DNAFieldAttribute(5, "char", "*directory", "char", 4, true)]
|
|
public char ptr_directory;
|
|
[DNAFieldAttribute(6, "int", "frame_start", "int", 4, false)]
|
|
public int frame_start;
|
|
[DNAFieldAttribute(7, "int", "frame_end", "int", 4, false)]
|
|
public int frame_end;
|
|
[DNAFieldAttribute(8, "int", "data_blocks_num", "int", 4, false)]
|
|
public int data_blocks_num;
|
|
[DNAFieldAttribute(9, "int", "active_data_block", "int", 4, false)]
|
|
public int active_data_block;
|
|
[DNAFieldAttribute(10, "NodesModifierDataBlock", "*data_blocks", "NodesModifierDataBlock", 4, true)]
|
|
public NodesModifierDataBlock ptr_data_blocks;
|
|
[DNAFieldAttribute(11, "NodesModifierPackedBake", "*packed", "NodesModifierPackedBake", 4, true)]
|
|
public NodesModifierPackedBake ptr_packed;
|
|
[DNAFieldAttribute(12, "void", "*_pad2", "void", 4, true)]
|
|
public object ptr__pad2;
|
|
[DNAFieldAttribute(13, "int64_t", "bake_size", "int64_t", 8, false)]
|
|
public long bake_size;
|
|
public NodesModifierBake() {
|
|
this.id = default;
|
|
this.flag = default;
|
|
this.bake_mode = default;
|
|
this.bake_target = default;
|
|
this._pad = default;
|
|
this.ptr_directory = default;
|
|
this.frame_start = default;
|
|
this.frame_end = default;
|
|
this.data_blocks_num = default;
|
|
this.active_data_block = default;
|
|
this.ptr_data_blocks = default;
|
|
this.ptr_packed = default;
|
|
this.ptr__pad2 = default;
|
|
this.bake_size = default;
|
|
}
|
|
public NodesModifierBake(int id, int flag, byte bake_mode, sbyte bake_target, char[] _pad, char ptr_directory, int frame_start, int frame_end, int data_blocks_num, int active_data_block, NodesModifierDataBlock ptr_data_blocks, NodesModifierPackedBake ptr_packed, object ptr__pad2, long bake_size) {
|
|
this.id = id;
|
|
this.flag = flag;
|
|
this.bake_mode = bake_mode;
|
|
this.bake_target = bake_target;
|
|
this._pad = _pad;
|
|
this.ptr_directory = ptr_directory;
|
|
this.frame_start = frame_start;
|
|
this.frame_end = frame_end;
|
|
this.data_blocks_num = data_blocks_num;
|
|
this.active_data_block = active_data_block;
|
|
this.ptr_data_blocks = ptr_data_blocks;
|
|
this.ptr_packed = ptr_packed;
|
|
this.ptr__pad2 = ptr__pad2;
|
|
this.bake_size = bake_size;
|
|
}
|
|
}
|
|
}
|