Files
BlenderSharp/BlendFile/DNA/ColorManagedViewSettings.cs
2025-01-22 17:40:14 +01:00

41 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 BlendFile.CompatTypes;
using System;
namespace BlendFile.DNA {
public class ColorManagedViewSettings {
public int flag;
public char[] _pad = new System.Char[4];
public char[] look = new System.Char[64];
public char[] view_transform = new System.Char[64];
public float exposure;
public float gamma;
public float temperature;
public float tint;
public CurveMapping ptr_curve_mapping;
public object ptr__pad2;
public ColorManagedViewSettings(int flag, char[] _pad, char[] look, char[] view_transform, float exposure, float gamma, float temperature, float tint, CurveMapping ptr_curve_mapping, object ptr__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.ptr_curve_mapping = ptr_curve_mapping;
this.ptr__pad2 = ptr__pad2;
}
}
}