Skip to content

Instantly share code, notes, and snippets.

View Meatplowz's full-sized avatar

Randall Meatplowz

View GitHub Profile
@Meatplowz
Meatplowz / Test_UI.py
Created September 3, 2018 23:30
Test_UI.py Boilerplate code for a Maya Tool
"""
Author: Randall Hess randall.hess@gmail.com
Purpose: Boilerplate UI Code for Maya
Created: 8/5/2018
"""
import maya.cmds as cmds
import maya.OpenMayaUI as OpenMayaUI
@Meatplowz
Meatplowz / maya_external_client.py
Last active June 29, 2023 06:28
Maya Threaded Server example with Client
"""
External Maya Client
This can be run outside of Maya
Use in idle or an IDE that can accept input.
"""
import socket
import logging