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/CXDLPFile.cs')
-rw-r--r--UVtools.Core/FileFormats/CXDLPFile.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/UVtools.Core/FileFormats/CXDLPFile.cs b/UVtools.Core/FileFormats/CXDLPFile.cs
index 1e93bda..f6f9d6d 100644
--- a/UVtools.Core/FileFormats/CXDLPFile.cs
+++ b/UVtools.Core/FileFormats/CXDLPFile.cs
@@ -492,6 +492,26 @@ namespace UVtools.Core.FileFormats
set => base.LightOffDelay = SlicerInfoSettings.LightOffDelay = (ushort)value;
}
+ 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 => SlicerInfoSettings.BottomExposureTime;