35 lines
1.1 KiB
C#
35 lines
1.1 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 struct NodeImageMultiFile {
|
|
public char[] base_path = new System.Char[1024];
|
|
public ImageFormatData format;
|
|
public int sfra;
|
|
public int efra;
|
|
public int active_input;
|
|
public char save_as_render;
|
|
public char[] _pad = new System.Char[3];
|
|
public NodeImageMultiFile(char[] base_path, ImageFormatData format, int sfra, int efra, int active_input, char save_as_render, char[] _pad) {
|
|
this.base_path = base_path;
|
|
this.format = format;
|
|
this.sfra = sfra;
|
|
this.efra = efra;
|
|
this.active_input = active_input;
|
|
this.save_as_render = save_as_render;
|
|
this._pad = _pad;
|
|
}
|
|
}
|
|
}
|