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/LGSFile.cs')
-rw-r--r--UVtools.Core/FileFormats/LGSFile.cs22
1 files changed, 21 insertions, 1 deletions
diff --git a/UVtools.Core/FileFormats/LGSFile.cs b/UVtools.Core/FileFormats/LGSFile.cs
index b5dc348..5ecbe22 100644
--- a/UVtools.Core/FileFormats/LGSFile.cs
+++ b/UVtools.Core/FileFormats/LGSFile.cs
@@ -326,7 +326,7 @@ namespace UVtools.Core.FileFormats
set => base.MachineZ = HeaderSettings.MachineZ = (float)Math.Round(value, 2);
}
- public override bool MirrorDisplay
+ public override bool DisplayMirror
{
get => true;
set { }
@@ -384,6 +384,26 @@ namespace UVtools.Core.FileFormats
}
}
+ 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 BottomExposureTime
{
get => TimeExtensions.MillisecondsToSeconds(HeaderSettings.BottomExposureTimeMs);