Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.Core/FileFormats/UVJFile.cs')
-rw-r--r--UVtools.Core/FileFormats/UVJFile.cs22
1 files changed, 21 insertions, 1 deletions
diff --git a/UVtools.Core/FileFormats/UVJFile.cs b/UVtools.Core/FileFormats/UVJFile.cs
index f6e96ab..24e160f 100644
--- a/UVtools.Core/FileFormats/UVJFile.cs
+++ b/UVtools.Core/FileFormats/UVJFile.cs
@@ -210,7 +210,7 @@ namespace UVtools.Core.FileFormats
}
}
- public override bool MirrorDisplay { get; set; }
+ public override bool DisplayMirror { get; set; }
public override byte AntiAliasing
{
@@ -251,6 +251,26 @@ namespace UVtools.Core.FileFormats
set => base.LightOffDelay = JsonSettings.Properties.Exposure.LightOffTime = (float)Math.Round(value, 2);
}
+ public override float BottomWaitTimeBeforeCure
+ {
+ get => base.BottomWaitTimeBeforeCure;
+ set
+ {
+ SetBottomLightOffDelay(value);
+ base.BottomWaitTimeBeforeCure = value;
+ }
+ }
+
+ public override float WaitTimeBeforeCure
+ {
+ get => base.WaitTimeBeforeCure;
+ set
+ {
+ SetNormalLightOffDelay(value);
+ base.WaitTimeBeforeCure = value;
+ }
+ }
+
public override float BottomLiftHeight
{
get => JsonSettings.Properties.Bottom.LiftHeight;