You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
privateval breakDelay by setting("Break Delay", 5, 0..5, 1, unit ="ticks", description ="The tick delay between breaking blocks", visibility= { page ==Page.Mining })
49
-
privateval breakThreshold by setting("Break Threshold", 0.7f, 0.2f..1.0f, 0.1f, description ="The progress at which the block will break.", visibility ={ page ==Page.Mining })
46
+
privateval breakDelay by setting("Break Delay", 5, 0..5, 1, "The tick delay between breaking blocks", unit=" ticks") { page ==Page.Mining }
47
+
privateval breakThreshold by setting("Break Threshold", 0.7f, 0.2f..1.0f, 0.1f, "The progress at which the block will break.") { page ==Page.Mining }
50
48
51
-
privateval renderMode by setting("Render Mode", RenderMode.Out, "The animation style of the renders", visibility = { page ==Page.Render })
52
-
privateval renderSetting by setting("Render Setting", RenderSetting.Both, "The different ways to draw the renders", visibility = { page ==Page.Render&& renderMode.isEnabled() })
49
+
privateval render by setting("Render", true, "Render block breaking progress")
50
+
privateval renderMode by setting("Render Mode", RenderMode.Out, "The animation style of the renders") { page ==Page.Render }
51
+
privateval renderSetting by setting("Render Setting", RenderSetting.Both, "The different ways to draw the renders") { page ==Page.Render&& render }
privateval staticFillColour by setting("Static Fill Colour", Color(1f, 0f, 0f, 0.3f), "The colour used to render the static fill of the box", visibility ={ page ==Page.Render&&renderMode.isEnabled()&& renderSetting !=RenderSetting.Outline&& fillColourMode ==ColourMode.Static })
56
-
privateval startFillColour by setting("Start Fill Colour", Color(1f, 0f, 0f, 0.3f), "The colour used to render the start fill of the box", visibility ={ page ==Page.Render&&renderMode.isEnabled()&& renderSetting !=RenderSetting.Outline&& fillColourMode ==ColourMode.Dynamic })
57
-
privateval endFillColour by setting("End Fill Colour", Color(0f, 1f, 0f, 0.3f), "The colour used to render the end fill of the box", visibility ={ page ==Page.Render&&renderMode.isEnabled()&& renderSetting !=RenderSetting.Outline&& fillColourMode ==ColourMode.Dynamic })
privateval staticFillColour by setting("Static Fill Colour", Color(1f, 0f, 0f, 0.3f), "The colour used to render the static fill of the box") { page ==Page.Render&&render&& renderSetting !=RenderSetting.Outline&& fillColourMode ==ColourMode.Static }
55
+
privateval startFillColour by setting("Start Fill Colour", Color(1f, 0f, 0f, 0.3f), "The colour used to render the start fill of the box") { page ==Page.Render&&render&& renderSetting !=RenderSetting.Outline&& fillColourMode ==ColourMode.Dynamic }
56
+
privateval endFillColour by setting("End Fill Colour", Color(0f, 1f, 0f, 0.3f), "The colour used to render the end fill of the box") { page ==Page.Render&&render&& renderSetting !=RenderSetting.Outline&& fillColourMode ==ColourMode.Dynamic}
privateval staticOutlineColour by setting("Static Outline Colour", Color(1f, 0f, 0f, 0.3f), "The colour used to render the static outline of the box", visibility ={ page ==Page.Render&&renderMode.isEnabled()&& renderSetting !=RenderSetting.Fill&& outlineColourMode ==ColourMode.Static })
61
-
privateval startOutlineColour by setting("Start Outline Colour", Color(1f, 0f, 0f, 0.3f), "The colour used to render the start outline of the box", visibility ={ page ==Page.Render&&renderMode.isEnabled()&& renderSetting !=RenderSetting.Fill&& outlineColourMode ==ColourMode.Dynamic })
62
-
privateval endOutlineColour by setting("End Outline Colour", Color(0f, 1f, 0f, 0.3f), "The colour used to render the end outline of the box", visibility ={ page ==Page.Render&&renderMode.isEnabled()&& renderSetting !=RenderSetting.Fill&& outlineColourMode ==ColourMode.Dynamic })
63
-
privateval outlineWidth by setting("Outline Width", 1f, 0f..3f, 0.1f, "the thickness of the outline", visibility ={ page ==Page.Render&&renderMode.isEnabled()&& renderSetting !=RenderSetting.Fill })
privateval staticOutlineColour by setting("Static Outline Colour", Color(1f, 0f, 0f, 0.3f), "The colour used to render the static outline of the box") { page ==Page.Render&&render&& renderSetting !=RenderSetting.Fill&& outlineColourMode ==ColourMode.Static }
60
+
privateval startOutlineColour by setting("Start Outline Colour", Color(1f, 0f, 0f, 0.3f), "The colour used to render the start outline of the box") { page ==Page.Render&&render&& renderSetting !=RenderSetting.Fill&& outlineColourMode ==ColourMode.Dynamic }
61
+
privateval endOutlineColour by setting("End Outline Colour", Color(0f, 1f, 0f, 0.3f), "The colour used to render the end outline of the box") { page ==Page.Render&&render&& renderSetting !=RenderSetting.Fill&& outlineColourMode ==ColourMode.Dynamic}
62
+
privateval outlineWidth by setting("Outline Width", 1f, 0f..3f, 0.1f, "the thickness of the outline") { page ==Page.Render&&render&& renderSetting !=RenderSetting.Fill }
0 commit comments