Skip to content

Commit

Permalink
Merge pull request #73 from GenEugene/develop
Browse files Browse the repository at this point in the history
Version 1.0.2
  • Loading branch information
GenEugene committed Jan 9, 2024
2 parents 5b04657 + 623e212 commit dea0258
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion GETOOLS_SOURCE/modules/GeneralWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from GETOOLS_SOURCE.values import Icons

class GeneralWindow:
version = "v1.0.1"
version = "v1.0.2"
name = "GETools"
title = name + " " + version

Expand Down
6 changes: 3 additions & 3 deletions GETOOLS_SOURCE/utils/Animation.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,6 @@ def FilterCurve(*args):
cmds.filterCurve()

def SetInfinity(mode, items = None, *args):
if (Selector.MultipleObjects(1) == None):
return

result = ""
if (mode == 1):
result = "constant"
Expand All @@ -66,7 +63,10 @@ def SetInfinity(mode, items = None, *args):
result = "cycleRelative"
elif (mode == 5):
result = "oscillate"

if (items == None):
if (Selector.MultipleObjects(1) == None):
return
cmds.setInfinity(preInfinite = result, postInfinite = result)
else:
cmds.setInfinity(items, preInfinite = result, postInfinite = result)
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ Backlog:
- [RIGGING] added constraint offset object
- [RIGGING] added Rebake IK from selected objects

v1.0.2
- Fixed the "Set Infinity" function causing a warning message to appear in the console.

v1.0.1
- [HOTFIX] Removed cross dependency for Maya 2020.

Expand Down

0 comments on commit dea0258

Please sign in to comment.