-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a "Scale Compensation" plug to both twistSpline & riderConstrai…
…nt nodes. (#29) * Added scale compensation plugs Both twistSpline and riderConstraint nodes got a new plug to handle global rig scaling internally. * Updated attribute editor templates Also added the missing template for the TwistTangent node, along with its outliner icon. * Fixed a typo in an attribute check macro * Updated plug-in version * Version bump to 1.2.0 + added new connection to script * Added scale compensation for the globalOffset
- Loading branch information
Showing
12 changed files
with
112 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,59 @@ | ||
+ PLATFORM:win64 MAYAVERSION:2022 TwistSpline 1.1.0 TwistSpline | ||
+ PLATFORM:win64 MAYAVERSION:2022 TwistSpline 1.2.0 TwistSpline | ||
[r] icons: icons | ||
plug-ins: windows-2022 | ||
[r] scripts: scripts | ||
|
||
+ PLATFORM:linux MAYAVERSION:2022 TwistSpline 1.1.0 TwistSpline | ||
+ PLATFORM:linux MAYAVERSION:2022 TwistSpline 1.2.0 TwistSpline | ||
[r] icons: icons | ||
plug-ins: linux-2022 | ||
[r] scripts: scripts | ||
|
||
+ PLATFORM:mac MAYAVERSION:2022 TwistSpline 1.1.0 TwistSpline | ||
+ PLATFORM:mac MAYAVERSION:2022 TwistSpline 1.2.0 TwistSpline | ||
[r] icons: icons | ||
plug-ins: mac-2022 | ||
[r] scripts: scripts | ||
|
||
+ PLATFORM:win64 MAYAVERSION:2023 TwistSpline 1.1.0 TwistSpline | ||
+ PLATFORM:win64 MAYAVERSION:2023 TwistSpline 1.2.0 TwistSpline | ||
[r] icons: icons | ||
plug-ins: windows-2023 | ||
[r] scripts: scripts | ||
|
||
+ PLATFORM:linux MAYAVERSION:2023 TwistSpline 1.1.0 TwistSpline | ||
+ PLATFORM:linux MAYAVERSION:2023 TwistSpline 1.2.0 TwistSpline | ||
[r] icons: icons | ||
plug-ins: linux-2023 | ||
[r] scripts: scripts | ||
|
||
+ PLATFORM:mac MAYAVERSION:2023 TwistSpline 1.1.0 TwistSpline | ||
+ PLATFORM:mac MAYAVERSION:2023 TwistSpline 1.2.0 TwistSpline | ||
[r] icons: icons | ||
plug-ins: mac-2023 | ||
[r] scripts: scripts | ||
|
||
+ PLATFORM:win64 MAYAVERSION:2024 TwistSpline 1.1.0 TwistSpline | ||
+ PLATFORM:win64 MAYAVERSION:2024 TwistSpline 1.2.0 TwistSpline | ||
[r] icons: icons | ||
plug-ins: windows-2024 | ||
[r] scripts: scripts | ||
|
||
+ PLATFORM:linux MAYAVERSION:2024 TwistSpline 1.1.0 TwistSpline | ||
+ PLATFORM:linux MAYAVERSION:2024 TwistSpline 1.2.0 TwistSpline | ||
[r] icons: icons | ||
plug-ins: linux-2024 | ||
[r] scripts: scripts | ||
|
||
+ PLATFORM:mac MAYAVERSION:2024 TwistSpline 1.1.0 TwistSpline | ||
+ PLATFORM:mac MAYAVERSION:2024 TwistSpline 1.2.0 TwistSpline | ||
[r] icons: icons | ||
plug-ins: mac-2024 | ||
[r] scripts: scripts | ||
|
||
+ PLATFORM:win64 MAYAVERSION:2025 TwistSpline 1.1.0 TwistSpline | ||
+ PLATFORM:win64 MAYAVERSION:2025 TwistSpline 1.2.0 TwistSpline | ||
[r] icons: icons | ||
plug-ins: windows-2025 | ||
[r] scripts: scripts | ||
|
||
+ PLATFORM:linux MAYAVERSION:2025 TwistSpline 1.1.0 TwistSpline | ||
+ PLATFORM:linux MAYAVERSION:2025 TwistSpline 1.2.0 TwistSpline | ||
[r] icons: icons | ||
plug-ins: linux-2025 | ||
[r] scripts: scripts | ||
|
||
+ PLATFORM:mac MAYAVERSION:2025 TwistSpline 1.1.0 TwistSpline | ||
+ PLATFORM:mac MAYAVERSION:2025 TwistSpline 1.2.0 TwistSpline | ||
[r] icons: icons | ||
plug-ins: mac-2025 | ||
[r] scripts: scripts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Attribute Editor Template for Blur Studio's 'Twist Tangent' plugin. | ||
|
||
global proc AEtwistTangentTemplate( string $nodeName ) { | ||
editorTemplate -beginScrollLayout; | ||
|
||
editorTemplate -beginLayout "Input Attributes" -collapse 0; | ||
editorTemplate -label "In Linear Target" -addControl "inLinearTarget"; | ||
editorTemplate -label "Auto" -addControl "auto"; | ||
editorTemplate -label "Smooth" -addControl "smooth"; | ||
editorTemplate -label "Weight" -addControl "weight"; | ||
editorTemplate -label "Backpoint" -addControl "backpoint"; | ||
editorTemplate -label "Endpoint" -addControl "endpoint"; | ||
editorTemplate -endLayout; | ||
|
||
editorTemplate -beginLayout "Output Attributes" -collapse 0; | ||
editorTemplate -label "Out" -addControl "out"; | ||
editorTemplate -label "Smooth Tan" -addControl "smoothTan"; | ||
editorTemplate -label "Out Linear Target" -addControl "outLinearTarget"; | ||
editorTemplate -label "Out Twist Up" -addControl "outTwistUp"; | ||
editorTemplate -label "Out Twist Mat" -addControl "outTwistMat"; | ||
editorTemplate -endLayout; | ||
|
||
// Base class attributes | ||
AEdependNodeTemplate $nodeName; | ||
|
||
editorTemplate -addExtraControls; | ||
editorTemplate -endScrollLayout; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.