//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using BlendFile.CompatTypes; using System; // Automatically generated by BlenderSharp at 22/01/2025 02:33:14 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; } } }