Skip to content

Instantly share code, notes, and snippets.

View Dennis-Nesterenko's full-sized avatar
💭
Thinking bout thos beans

Probably Not Dennis-Nesterenko

💭
Thinking bout thos beans
View GitHub Profile
@Dennis-Nesterenko
Dennis-Nesterenko / sort_game_exporter_presets
Last active March 6, 2026 09:05
I needed a way to sort the export settings for the game exporter
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...")
@Dennis-Nesterenko
Dennis-Nesterenko / Maya game exporter docking
Last active March 6, 2026 05:32
Mayas game exporter is undockable, and I wanted to dock it. Everything here is AI generated via Gemini 3.1 High.
"""
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.
@Dennis-Nesterenko
Dennis-Nesterenko / timeLogger.py
Last active February 24, 2024 08:22 — forked from anonymous/timeLogger.py
Maya time logger script. Original by Nicholas Rodgers
# 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