chore: initial commit
This commit is contained in:
30
Assets/Feel/MMFeedbacks/MMFeedbacksForThirdParty/URP/Springs/MMSpringBloomIntensity_URP.cs
vendored
Normal file
30
Assets/Feel/MMFeedbacks/MMFeedbacksForThirdParty/URP/Springs/MMSpringBloomIntensity_URP.cs
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
#if MM_URP
|
||||
using UnityEngine;
|
||||
using UnityEngine.Rendering;
|
||||
using UnityEngine.Rendering.Universal;
|
||||
|
||||
namespace MoreMountains.Feedbacks
|
||||
{
|
||||
[AddComponentMenu("More Mountains/Springs/MMSpringBloomIntensity_URP")]
|
||||
public class MMSpringBloomIntensity_URP : MMSpringFloatComponent<Volume>
|
||||
{
|
||||
protected Bloom _bloom;
|
||||
|
||||
protected override void Initialization()
|
||||
{
|
||||
if (Target == null)
|
||||
{
|
||||
Target = this.gameObject.GetComponent<Volume>();
|
||||
}
|
||||
Target.profile.TryGet(out _bloom);
|
||||
base.Initialization();
|
||||
}
|
||||
|
||||
public override float TargetFloat
|
||||
{
|
||||
get => _bloom.intensity.value;
|
||||
set => _bloom.intensity.Override(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
11
Assets/Feel/MMFeedbacks/MMFeedbacksForThirdParty/URP/Springs/MMSpringBloomIntensity_URP.cs.meta
vendored
Normal file
11
Assets/Feel/MMFeedbacks/MMFeedbacksForThirdParty/URP/Springs/MMSpringBloomIntensity_URP.cs.meta
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 474936ac5716a714abf16bab43955d3d
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,30 @@
|
||||
#if MM_URP
|
||||
using UnityEngine;
|
||||
using UnityEngine.Rendering;
|
||||
using UnityEngine.Rendering.Universal;
|
||||
|
||||
namespace MoreMountains.Feedbacks
|
||||
{
|
||||
[AddComponentMenu("More Mountains/Springs/MMSpringChromaticAberrationIntensity_URP")]
|
||||
public class MMSpringChromaticAberrationIntensity_URP : MMSpringFloatComponent<Volume>
|
||||
{
|
||||
protected ChromaticAberration _chromaticAberration;
|
||||
|
||||
protected override void Initialization()
|
||||
{
|
||||
if (Target == null)
|
||||
{
|
||||
Target = this.gameObject.GetComponent<Volume>();
|
||||
}
|
||||
Target.profile.TryGet(out _chromaticAberration);
|
||||
base.Initialization();
|
||||
}
|
||||
|
||||
public override float TargetFloat
|
||||
{
|
||||
get => _chromaticAberration.intensity.value;
|
||||
set => _chromaticAberration.intensity.Override(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8b91ce6d480b92e488d567b5558e559e
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,30 @@
|
||||
#if MM_URP
|
||||
using UnityEngine;
|
||||
using UnityEngine.Rendering;
|
||||
using UnityEngine.Rendering.Universal;
|
||||
|
||||
namespace MoreMountains.Feedbacks
|
||||
{
|
||||
[AddComponentMenu("More Mountains/Springs/MMSpringColorAdjustmentsContrast_URP")]
|
||||
public class MMSpringColorAdjustmentsContrast_URP : MMSpringFloatComponent<Volume>
|
||||
{
|
||||
protected ColorAdjustments _colorAdjustments;
|
||||
|
||||
protected override void Initialization()
|
||||
{
|
||||
if (Target == null)
|
||||
{
|
||||
Target = this.gameObject.GetComponent<Volume>();
|
||||
}
|
||||
Target.profile.TryGet(out _colorAdjustments);
|
||||
base.Initialization();
|
||||
}
|
||||
|
||||
public override float TargetFloat
|
||||
{
|
||||
get => _colorAdjustments.contrast.value;
|
||||
set => _colorAdjustments.contrast.Override(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 81b13cdaf196f864186817b183b55f91
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,30 @@
|
||||
#if MM_URP
|
||||
using UnityEngine;
|
||||
using UnityEngine.Rendering;
|
||||
using UnityEngine.Rendering.Universal;
|
||||
|
||||
namespace MoreMountains.Feedbacks
|
||||
{
|
||||
[AddComponentMenu("More Mountains/Springs/MMSpringColorAdjustmentsHueShift_URP")]
|
||||
public class MMSpringColorAdjustmentsHueShift_URP : MMSpringFloatComponent<Volume>
|
||||
{
|
||||
protected ColorAdjustments _colorAdjustments;
|
||||
|
||||
protected override void Initialization()
|
||||
{
|
||||
if (Target == null)
|
||||
{
|
||||
Target = this.gameObject.GetComponent<Volume>();
|
||||
}
|
||||
Target.profile.TryGet(out _colorAdjustments);
|
||||
base.Initialization();
|
||||
}
|
||||
|
||||
public override float TargetFloat
|
||||
{
|
||||
get => _colorAdjustments.hueShift.value;
|
||||
set => _colorAdjustments.hueShift.Override(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 01b19754f5c052d4096f67cfce76eb7f
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,30 @@
|
||||
#if MM_URP
|
||||
using UnityEngine;
|
||||
using UnityEngine.Rendering;
|
||||
using UnityEngine.Rendering.Universal;
|
||||
|
||||
namespace MoreMountains.Feedbacks
|
||||
{
|
||||
[AddComponentMenu("More Mountains/Springs/MMSpringColorAdjustmentsSaturation_URP")]
|
||||
public class MMSpringColorAdjustmentsSaturation_URP : MMSpringFloatComponent<Volume>
|
||||
{
|
||||
protected ColorAdjustments _colorAdjustments;
|
||||
|
||||
protected override void Initialization()
|
||||
{
|
||||
if (Target == null)
|
||||
{
|
||||
Target = this.gameObject.GetComponent<Volume>();
|
||||
}
|
||||
Target.profile.TryGet(out _colorAdjustments);
|
||||
base.Initialization();
|
||||
}
|
||||
|
||||
public override float TargetFloat
|
||||
{
|
||||
get => _colorAdjustments.saturation.value;
|
||||
set => _colorAdjustments.saturation.Override(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7f6a82eb72bef1c489dbd967387f8f08
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,30 @@
|
||||
#if MM_URP
|
||||
using UnityEngine;
|
||||
using UnityEngine.Rendering;
|
||||
using UnityEngine.Rendering.Universal;
|
||||
|
||||
namespace MoreMountains.Feedbacks
|
||||
{
|
||||
[AddComponentMenu("More Mountains/Springs/MMSpringDepthOfFieldFocalLength_URP")]
|
||||
public class MMSpringDepthOfFieldFocalLength_URP : MMSpringFloatComponent<Volume>
|
||||
{
|
||||
protected DepthOfField _depthOfField;
|
||||
|
||||
protected override void Initialization()
|
||||
{
|
||||
if (Target == null)
|
||||
{
|
||||
Target = this.gameObject.GetComponent<Volume>();
|
||||
}
|
||||
Target.profile.TryGet(out _depthOfField);
|
||||
base.Initialization();
|
||||
}
|
||||
|
||||
public override float TargetFloat
|
||||
{
|
||||
get => _depthOfField.focalLength.value;
|
||||
set => _depthOfField.focalLength.Override(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 24c2aeb149cc5a640a406cfe9255b64e
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,30 @@
|
||||
#if MM_URP
|
||||
using UnityEngine;
|
||||
using UnityEngine.Rendering;
|
||||
using UnityEngine.Rendering.Universal;
|
||||
|
||||
namespace MoreMountains.Feedbacks
|
||||
{
|
||||
[AddComponentMenu("More Mountains/Springs/MMSpringLensDistortionIntensity_URP")]
|
||||
public class MMSpringLensDistortionIntensity_URP : MMSpringFloatComponent<Volume>
|
||||
{
|
||||
protected LensDistortion _lensDistortion;
|
||||
|
||||
protected override void Initialization()
|
||||
{
|
||||
if (Target == null)
|
||||
{
|
||||
Target = this.gameObject.GetComponent<Volume>();
|
||||
}
|
||||
Target.profile.TryGet(out _lensDistortion);
|
||||
base.Initialization();
|
||||
}
|
||||
|
||||
public override float TargetFloat
|
||||
{
|
||||
get => _lensDistortion.intensity.value;
|
||||
set => _lensDistortion.intensity.Override(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 39c2e38fedd7ea6458db806a703669ef
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
30
Assets/Feel/MMFeedbacks/MMFeedbacksForThirdParty/URP/Springs/MMSpringMotionBlurIntensity_URP.cs
vendored
Normal file
30
Assets/Feel/MMFeedbacks/MMFeedbacksForThirdParty/URP/Springs/MMSpringMotionBlurIntensity_URP.cs
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
#if MM_URP
|
||||
using UnityEngine;
|
||||
using UnityEngine.Rendering;
|
||||
using UnityEngine.Rendering.Universal;
|
||||
|
||||
namespace MoreMountains.Feedbacks
|
||||
{
|
||||
[AddComponentMenu("More Mountains/Springs/MMSpringMotionBlurIntensity_URP")]
|
||||
public class MMSpringMotionBlurIntensity_URP : MMSpringFloatComponent<Volume>
|
||||
{
|
||||
protected MotionBlur _motionBlur;
|
||||
|
||||
protected override void Initialization()
|
||||
{
|
||||
if (Target == null)
|
||||
{
|
||||
Target = this.gameObject.GetComponent<Volume>();
|
||||
}
|
||||
Target.profile.TryGet(out _motionBlur);
|
||||
base.Initialization();
|
||||
}
|
||||
|
||||
public override float TargetFloat
|
||||
{
|
||||
get => _motionBlur.intensity.value;
|
||||
set => _motionBlur.intensity.Override(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5412ea97eaefefa4fa53519f330cfaad
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,30 @@
|
||||
#if MM_URP
|
||||
using UnityEngine;
|
||||
using UnityEngine.Rendering;
|
||||
using UnityEngine.Rendering.Universal;
|
||||
|
||||
namespace MoreMountains.Feedbacks
|
||||
{
|
||||
[AddComponentMenu("More Mountains/Springs/MMSpringPaniniProjectionDistance_URP")]
|
||||
public class MMSpringPaniniProjectionDistance_URP : MMSpringFloatComponent<Volume>
|
||||
{
|
||||
protected PaniniProjection _paniniProjection;
|
||||
|
||||
protected override void Initialization()
|
||||
{
|
||||
if (Target == null)
|
||||
{
|
||||
Target = this.gameObject.GetComponent<Volume>();
|
||||
}
|
||||
Target.profile.TryGet(out _paniniProjection);
|
||||
base.Initialization();
|
||||
}
|
||||
|
||||
public override float TargetFloat
|
||||
{
|
||||
get => _paniniProjection.distance.value;
|
||||
set => _paniniProjection.distance.Override(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f96d4bb1a57044c4baa681871d059ec3
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
30
Assets/Feel/MMFeedbacks/MMFeedbacksForThirdParty/URP/Springs/MMSpringVignetteCenter_URP.cs
vendored
Normal file
30
Assets/Feel/MMFeedbacks/MMFeedbacksForThirdParty/URP/Springs/MMSpringVignetteCenter_URP.cs
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
#if MM_URP
|
||||
using UnityEngine;
|
||||
using UnityEngine.Rendering;
|
||||
using UnityEngine.Rendering.Universal;
|
||||
|
||||
namespace MoreMountains.Feedbacks
|
||||
{
|
||||
[AddComponentMenu("More Mountains/Springs/MMSpringVignetteCenter_URP")]
|
||||
public class MMSpringVignetteCenter_URP : MMSpringVector2Component<Volume>
|
||||
{
|
||||
protected Vignette _vignette;
|
||||
|
||||
protected override void Initialization()
|
||||
{
|
||||
if (Target == null)
|
||||
{
|
||||
Target = this.gameObject.GetComponent<Volume>();
|
||||
}
|
||||
Target.profile.TryGet(out _vignette);
|
||||
base.Initialization();
|
||||
}
|
||||
|
||||
public override Vector2 TargetVector2
|
||||
{
|
||||
get => _vignette.center.value;
|
||||
set => _vignette.center.Override(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
11
Assets/Feel/MMFeedbacks/MMFeedbacksForThirdParty/URP/Springs/MMSpringVignetteCenter_URP.cs.meta
vendored
Normal file
11
Assets/Feel/MMFeedbacks/MMFeedbacksForThirdParty/URP/Springs/MMSpringVignetteCenter_URP.cs.meta
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3ffa54671933237418443d1faa5b3a23
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
30
Assets/Feel/MMFeedbacks/MMFeedbacksForThirdParty/URP/Springs/MMSpringVignetteColor_URP.cs
vendored
Normal file
30
Assets/Feel/MMFeedbacks/MMFeedbacksForThirdParty/URP/Springs/MMSpringVignetteColor_URP.cs
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
#if MM_URP
|
||||
using UnityEngine;
|
||||
using UnityEngine.Rendering;
|
||||
using UnityEngine.Rendering.Universal;
|
||||
|
||||
namespace MoreMountains.Feedbacks
|
||||
{
|
||||
[AddComponentMenu("More Mountains/Springs/MMSpringVignetteColor_URP")]
|
||||
public class MMSpringVignetteColor_URP : MMSpringColorComponent<Volume>
|
||||
{
|
||||
protected Vignette _vignette;
|
||||
|
||||
protected override void Initialization()
|
||||
{
|
||||
if (Target == null)
|
||||
{
|
||||
Target = this.gameObject.GetComponent<Volume>();
|
||||
}
|
||||
Target.profile.TryGet(out _vignette);
|
||||
base.Initialization();
|
||||
}
|
||||
|
||||
public override Color TargetColor
|
||||
{
|
||||
get => _vignette.color.value;
|
||||
set => _vignette.color.Override(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
11
Assets/Feel/MMFeedbacks/MMFeedbacksForThirdParty/URP/Springs/MMSpringVignetteColor_URP.cs.meta
vendored
Normal file
11
Assets/Feel/MMFeedbacks/MMFeedbacksForThirdParty/URP/Springs/MMSpringVignetteColor_URP.cs.meta
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e0b0662717e477a49ab069670a2b5bc6
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
30
Assets/Feel/MMFeedbacks/MMFeedbacksForThirdParty/URP/Springs/MMSpringVignetteIntensity_URP.cs
vendored
Normal file
30
Assets/Feel/MMFeedbacks/MMFeedbacksForThirdParty/URP/Springs/MMSpringVignetteIntensity_URP.cs
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
#if MM_URP
|
||||
using UnityEngine;
|
||||
using UnityEngine.Rendering;
|
||||
using UnityEngine.Rendering.Universal;
|
||||
|
||||
namespace MoreMountains.Feedbacks
|
||||
{
|
||||
[AddComponentMenu("More Mountains/Springs/MMSpringVignetteIntensity_URP")]
|
||||
public class MMSpringVignetteIntensity_URP : MMSpringFloatComponent<Volume>
|
||||
{
|
||||
protected Vignette _vignette;
|
||||
|
||||
protected override void Initialization()
|
||||
{
|
||||
if (Target == null)
|
||||
{
|
||||
Target = this.gameObject.GetComponent<Volume>();
|
||||
}
|
||||
Target.profile.TryGet(out _vignette);
|
||||
base.Initialization();
|
||||
}
|
||||
|
||||
public override float TargetFloat
|
||||
{
|
||||
get => _vignette.intensity.value;
|
||||
set => _vignette.intensity.Override(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: df5cccc1b626f954881aee460f519752
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,30 @@
|
||||
#if MM_URP
|
||||
using UnityEngine;
|
||||
using UnityEngine.Rendering;
|
||||
using UnityEngine.Rendering.Universal;
|
||||
|
||||
namespace MoreMountains.Feedbacks
|
||||
{
|
||||
[AddComponentMenu("More Mountains/Springs/MMSpringWhiteBalanceTemperature_URP")]
|
||||
public class MMSpringWhiteBalanceTemperature_URP : MMSpringFloatComponent<Volume>
|
||||
{
|
||||
protected WhiteBalance _whiteBalance;
|
||||
|
||||
protected override void Initialization()
|
||||
{
|
||||
if (Target == null)
|
||||
{
|
||||
Target = this.gameObject.GetComponent<Volume>();
|
||||
}
|
||||
Target.profile.TryGet(out _whiteBalance);
|
||||
base.Initialization();
|
||||
}
|
||||
|
||||
public override float TargetFloat
|
||||
{
|
||||
get => _whiteBalance.temperature.value;
|
||||
set => _whiteBalance.temperature.Override(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1ffac7400616d3f44b99ca936f6ab406
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
30
Assets/Feel/MMFeedbacks/MMFeedbacksForThirdParty/URP/Springs/MMSpringWhiteBalanceTint_URP.cs
vendored
Normal file
30
Assets/Feel/MMFeedbacks/MMFeedbacksForThirdParty/URP/Springs/MMSpringWhiteBalanceTint_URP.cs
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
#if MM_URP
|
||||
using UnityEngine;
|
||||
using UnityEngine.Rendering;
|
||||
using UnityEngine.Rendering.Universal;
|
||||
|
||||
namespace MoreMountains.Feedbacks
|
||||
{
|
||||
[AddComponentMenu("More Mountains/Springs/MMSpringWhiteBalanceTint_URP")]
|
||||
public class MMSpringWhiteBalanceTint_URP : MMSpringFloatComponent<Volume>
|
||||
{
|
||||
protected WhiteBalance _whiteBalance;
|
||||
|
||||
protected override void Initialization()
|
||||
{
|
||||
if (Target == null)
|
||||
{
|
||||
Target = this.gameObject.GetComponent<Volume>();
|
||||
}
|
||||
Target.profile.TryGet(out _whiteBalance);
|
||||
base.Initialization();
|
||||
}
|
||||
|
||||
public override float TargetFloat
|
||||
{
|
||||
get => _whiteBalance.tint.value;
|
||||
set => _whiteBalance.tint.Override(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 03434ee759b2dcc45b2a246dfc70ec89
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user