40 lines
1.3 KiB
C#
40 lines
1.3 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(614, "NodeImageFile", 1368)]
|
|
public struct NodeImageFile {
|
|
[DNAFieldAttribute(0, "char", "name[1024]", "System.Char[]", 1024, false)]
|
|
public char[] name = new System.Char[1024];
|
|
[DNAFieldAttribute(1, "ImageFormatData", "im_format", "ImageFormatData", 336, false)]
|
|
public ImageFormatData im_format;
|
|
[DNAFieldAttribute(2, "int", "sfra", "int", 4, false)]
|
|
public int sfra;
|
|
[DNAFieldAttribute(3, "int", "efra", "int", 4, false)]
|
|
public int efra;
|
|
public NodeImageFile() {
|
|
this.name = default;
|
|
this.im_format = default;
|
|
this.sfra = default;
|
|
this.efra = default;
|
|
}
|
|
public NodeImageFile(char[] name, ImageFormatData im_format, int sfra, int efra) {
|
|
this.name = name;
|
|
this.im_format = im_format;
|
|
this.sfra = sfra;
|
|
this.efra = efra;
|
|
}
|
|
}
|
|
}
|