Skip to content

Commit

Permalink
Merge pull request #90 from GenEugene/develop
Browse files Browse the repository at this point in the history
Version 1.2.6
  • Loading branch information
GenEugene authored Aug 20, 2024
2 parents f47ee3f + e459103 commit 7c9a2d6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
9 changes: 4 additions & 5 deletions GETOOLS_SOURCE/Settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,25 @@
from .utils import Colors


# Interface
buttonLabel = "GETools"

windowName = "windowGETools"
dockName = "dockGETools"
dockAllowedAreas = ("left", "right")
dockStartArea = dockAllowedAreas[0] # start docking state, 0 - left, 1 - right

windowHeight = 500 # vertical window size when undocked
windowWidth = 280
windowWidthScrollSpace = 20
lineHeight = 24
margin = 2

sliderWidth = (60, 54, 10)
sliderWidthMarker = 14

windowWidthScroll = windowWidth - windowWidthScrollSpace
windowWidthMargin = windowWidthScroll - margin * 2

frames1Color = Colors.blackWhite13
frames2Color = Colors.blackWhite20
frames2Prefix = "// "

# Default values
checkboxEulerFilter = False # automatic euler filter checkbox

4 changes: 2 additions & 2 deletions GETOOLS_SOURCE/modules/GeneralWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@


class GeneralWindow:
version = "v1.2.5"
version = "v1.2.6"
name = "GETools"
title = name + " " + version

Expand Down Expand Up @@ -218,7 +218,7 @@ def LayerMove(*args):
def LayoutMenuOptions(self):
cmds.menu(label = "Options", tearOff = True)

self.menuCheckboxEulerFilter = UI.MenuCheckbox(label = "Euler Filter After Baking", value = False, valueDefault = False)
self.menuCheckboxEulerFilter = UI.MenuCheckbox(label = "Euler Filter After Baking", value = Settings.checkboxEulerFilter, valueDefault = Settings.checkboxEulerFilter)

cmds.menuItem(dividerLabel = "Install", divider = True)

Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
GETools changelog

v1.2.6
- Added to Settings.py file default value for "checkboxEulerFilter"

v1.2.5
- [OVERLAPPY] Added confirm dialog for zero particle offset.
- [UTILS] Added draft annotation creation logic.
Expand Down

0 comments on commit 7c9a2d6

Please sign in to comment.