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

64 lines
2.6 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(168, "ColorManagedViewSettings", 168)]
public class ColorManagedViewSettings {
[DNAFieldAttribute(4, "int", 0, "flag", "int", false, 0)]
public int flag;
[DNAFieldAttribute(4, "char", 1, "_pad[4]", "System.Char[]", false, 4)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(64, "char", 2, "look[64]", "System.Char[]", false, 8)]
public char[] look = new System.Char[64];
[DNAFieldAttribute(64, "char", 3, "view_transform[64]", "System.Char[]", false, 72)]
public char[] view_transform = new System.Char[64];
[DNAFieldAttribute(4, "float", 4, "exposure", "float", false, 136)]
public float exposure;
[DNAFieldAttribute(4, "float", 5, "gamma", "float", false, 140)]
public float gamma;
[DNAFieldAttribute(4, "float", 6, "temperature", "float", false, 144)]
public float temperature;
[DNAFieldAttribute(4, "float", 7, "tint", "float", false, 148)]
public float tint;
[DNAFieldAttribute(8, "CurveMapping", 8, "*curve_mapping", "CurveMapping", true, 152)]
public CurveMapping curve_mapping;
[DNAFieldAttribute(8, "void", 9, "*_pad2", "void", true, 160)]
public object _pad2;
public ColorManagedViewSettings() {
this.flag = default;
this._pad = default;
this.look = default;
this.view_transform = default;
this.exposure = default;
this.gamma = default;
this.temperature = default;
this.tint = default;
this.curve_mapping = default;
this._pad2 = default;
}
public ColorManagedViewSettings(int flag, char[] _pad, char[] look, char[] view_transform, float exposure, float gamma, float temperature, float tint, CurveMapping curve_mapping, object _pad2) {
this.flag = flag;
this._pad = _pad;
this.look = look;
this.view_transform = view_transform;
this.exposure = exposure;
this.gamma = gamma;
this.temperature = temperature;
this.tint = tint;
this.curve_mapping = curve_mapping;
this._pad2 = _pad2;
}
}
}