36 lines
1.3 KiB
C#
36 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(908, "BrightContrastModifierData", 120)]
|
|
public class BrightContrastModifierData {
|
|
[DNAFieldAttribute(112, "SequenceModifierData", 0, "modifier", "SequenceModifierData", false, 0)]
|
|
public SequenceModifierData modifier;
|
|
[DNAFieldAttribute(4, "float", 1, "bright", "float", false, 112)]
|
|
public float bright;
|
|
[DNAFieldAttribute(4, "float", 2, "contrast", "float", false, 116)]
|
|
public float contrast;
|
|
public BrightContrastModifierData() {
|
|
this.modifier = default;
|
|
this.bright = default;
|
|
this.contrast = default;
|
|
}
|
|
public BrightContrastModifierData(SequenceModifierData modifier, float bright, float contrast) {
|
|
this.modifier = modifier;
|
|
this.bright = bright;
|
|
this.contrast = contrast;
|
|
}
|
|
}
|
|
}
|