Files
BlenderSharp/BlendFile/DNA/NodeImageFile.cs
2025-03-11 19:12:04 +01:00

40 lines
1.4 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 class NodeImageFile {
[DNAArrayAttribute(1024, "char", 0, "name[1024]", "System.Char[]", 1024, 0)]
public char[] name = new System.Char[1024];
[DNAFieldAttribute(336, "ImageFormatData", 1, "im_format", "ImageFormatData", false, 1024)]
public ImageFormatData im_format;
[DNAFieldAttribute(4, "int", 2, "sfra", "int", false, 1360)]
public int sfra;
[DNAFieldAttribute(4, "int", 3, "efra", "int", false, 1364)]
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;
}
}
}