Files
BlenderSharp/BlendFile/DNA/NodeImageAnim.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

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(601, "NodeImageAnim")]
public struct NodeImageAnim {
[DNAFieldAttribute(0, "int", "frames", 4)]
public int frames;
[DNAFieldAttribute(1, "int", "sfra", 4)]
public int sfra;
[DNAFieldAttribute(2, "int", "nr", 4)]
public int nr;
[DNAFieldAttribute(3, "char", "cyclic", 1)]
public char cyclic;
[DNAFieldAttribute(4, "char", "movie", 1)]
public char movie;
[DNAFieldAttribute(5, "char", "_pad[2]", 1)]
public char[] _pad = new System.Char[2];
public NodeImageAnim(int frames, int sfra, int nr, char cyclic, char movie, char[] _pad) {
this.frames = frames;
this.sfra = sfra;
this.nr = nr;
this.cyclic = cyclic;
this.movie = movie;
this._pad = _pad;
}
}
}