diff --git a/GETOOLS_SOURCE/modules/GeneralWindow.py b/GETOOLS_SOURCE/modules/GeneralWindow.py index ad4fd7e..87cbf83 100644 --- a/GETOOLS_SOURCE/modules/GeneralWindow.py +++ b/GETOOLS_SOURCE/modules/GeneralWindow.py @@ -20,7 +20,7 @@ from GETOOLS_SOURCE.values import Icons class GeneralWindow: - version = "v1.0.0" + version = "v1.0.1" name = "GETools" title = name + " " + version diff --git a/GETOOLS_SOURCE/utils/Baker.py b/GETOOLS_SOURCE/utils/Baker.py index b26be35..95cb54e 100644 --- a/GETOOLS_SOURCE/utils/Baker.py +++ b/GETOOLS_SOURCE/utils/Baker.py @@ -3,7 +3,6 @@ import maya.cmds as cmds from GETOOLS_SOURCE.utils import Constraints -from GETOOLS_SOURCE.utils import Locators from GETOOLS_SOURCE.utils import Selector from GETOOLS_SOURCE.utils import Timeline @@ -78,7 +77,7 @@ def BakeSelectedByWorld(sampleBy = 1.0, selectedRange = False, channelBox = Fals if (selectedList == None): return - world = Locators.Create() + world = cmds.group(world = True, empty = True) selectedList.append(world) cmds.select(selectedList, replace = True) BakeSelectedByLastObject(sampleBy = sampleBy, selectedRange = selectedRange, channelBox = channelBox, attributes = attributes) diff --git a/README.md b/README.md index bb35100..5e77a64 100644 --- a/README.md +++ b/README.md @@ -19,5 +19,6 @@ Simply drag and drop GETools\TOOLS\DRAG_AND_DROP_INSTALL.py into Maya viewport *** # Known issues: +- If Maya uses interface scaling, some UI elements can be stretched or aligned incorrectly - UI Buttons are not aligned perfectly diff --git a/changelog.txt b/changelog.txt index 7aa4ea0..1eb63f5 100644 --- a/changelog.txt +++ b/changelog.txt @@ -5,6 +5,9 @@ Backlog: - [RIGGING] added constraint offset object - [RIGGING] added Rebake IK from selected objects +v1.0.1 +- [HOTFIX] Removed cross dependency for Maya 2020. + v1.0.0 - [UI] Changed main icon and added some small icons. - [UI] Added pop-up for shelf buttons installation.