Files
BlenderSharp/BlendFile/DNA/PreviewImage.cs
2025-03-04 18:48:04 +01:00

48 lines
1.9 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(41, "PreviewImage", 48)]
public class PreviewImage {
[DNAFieldAttribute(8, "int", 0, "w[2]", "System.Int32[]", false, 0)]
public int[] w = new System.Int32[2];
[DNAFieldAttribute(8, "int", 1, "h[2]", "System.Int32[]", false, 8)]
public int[] h = new System.Int32[2];
[DNAFieldAttribute(4, "short", 2, "flag[2]", "System.Int16[]", false, 16)]
public short[] flag = new System.Int16[2];
[DNAFieldAttribute(4, "short", 3, "changed_timestamp[2]", "System.Int16[]", false, 20)]
public short[] changed_timestamp = new System.Int16[2];
[DNAFieldAttribute(16, "int", 4, "*rect[2]", "System.Int32[]", true, 24)]
public int[] rect = new System.Int32[2];
[DNAFieldAttribute(8, "PreviewImageRuntimeHandle", 5, "*runtime", "PreviewImageRuntimeHandle", true, 40)]
public PreviewImageRuntimeHandle runtime;
public PreviewImage() {
this.w = default;
this.h = default;
this.flag = default;
this.changed_timestamp = default;
this.rect = default;
this.runtime = default;
}
public PreviewImage(int[] w, int[] h, short[] flag, short[] changed_timestamp, int[] rect, PreviewImageRuntimeHandle runtime) {
this.w = w;
this.h = h;
this.flag = flag;
this.changed_timestamp = changed_timestamp;
this.rect = rect;
this.runtime = runtime;
}
}
}