Skip to content

cancer32/scripteditor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

scripteditor

An external python script editor for Autodesk Maya. With the help of it we can connect to the maya's commandPort openned on the host.

Preview

Requirements

  • Python 2.7 or 3.X
  • PyQt4 or PyQt5

How to use

  1. First open a commandport on the maya by running the below python command.....
import maya.cmds as cmds
host = '127.0.0.1'		# For connecting from remote host use the IP address of the machine
port = 5050
if not cmds.commandPort('%s:%s' %(host,port), q=True):
    cmds.commandPort(n='%s:%s' %(host,port), stp='python')
  1. Run the scripteditor.py.
  2. Click Connect button and give Host & Port given on step 1.
  3. Run the selected command or whole script.
Icons made by Smashicons from www.flaticon.com is licensed by CC 3.0 BY

About

An external python script editor for Autodesk Maya.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages