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