- Added auto generation of DNAClass attributes on file generation - Regenerated all files
34 lines
1.1 KiB
C#
34 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 System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(614, "NodeImageFile")]
|
|
public struct NodeImageFile {
|
|
[DNAFieldAttribute(0, "char", "name[1024]", 1)]
|
|
public char[] name = new System.Char[1024];
|
|
[DNAFieldAttribute(1, "ImageFormatData", "im_format", 336)]
|
|
public ImageFormatData im_format;
|
|
[DNAFieldAttribute(2, "int", "sfra", 4)]
|
|
public int sfra;
|
|
[DNAFieldAttribute(3, "int", "efra", 4)]
|
|
public int efra;
|
|
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;
|
|
}
|
|
}
|
|
}
|