This file contains hidden or 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
| import maya.cmds as cmds | |
| import re | |
| import os | |
| def sort_game_exporter_presets(): | |
| """ | |
| Maya Python script to sort Game Exporter animation clips alphabetically in a .mel preset file. | |
| Evertyhing below is AI generated via Gemini Flash on Google Antigravity | |
| """ | |
| print("[PresetSorter] Trying to open file explore...") |
This file contains hidden or 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
| """ | |
| maya_game_exporter_dock.py | |
| -------------------------- | |
| Mayas game exporter is undockable, and I wanted to dock it. Everything here is AI generated via Gemini 3.1 High. | |
| A native PySide2 Mixin application that securely rebuilds Maya's Game Exporter | |
| MEL UI within a fully dockable workspace panel. This bypasses the Game Exporter's | |
| internal hardcoded window name checks that prevent standard Maya docking. |
This file contains hidden or 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 script by Nicholas Rodgers. Modified by me using ChatGPT to fix syntax issues and changing the logger file output to 'Maya Timesheets' in Documents | |
| # You can find the original script on his blog here: https://archive.is/4sYUh | |
| # Tested and working on Widnows in Maya 2023 | |
| # Save this script to your scripts folder as timeLogger.py and in your userSetup.py file add this line: import timeLogger | |
| import os | |
| import time | |
| import datetime | |
| import maya.cmds as cmds | |
| import platform |