intelligence Wiki
What happens if you cross artificial intelligence with 3D
Status: Planning
Brought to you by:
freshnfunky
1.) Put the Folder:
| Folder | Into: |
|---|---|
| Intelligence/ | MyDocuments (or anywhere else appropriate) |
2.) Put Content of Folder:
| Folder Content | Into: |
|---|---|
| /scripts | %%MayaFolder%%/scripts |
| /prefs/sheves | %%MayaFolder%%/prefs/shelves |
3.) edit the file:
userSetup.py
Which lays in the scripts/ folder.
replace %%USERFOLDER%% with the location of the folder: intelligence/
the current version does not find the standard CommandScrollFieldReporter by it's own.
But this will be fixed next.
currently you need to execute this script first inside Maya before you can use "intelligent Maya":
import maya.cmds as cmds
# this will create a tiny window with a command history reporter
cmds.window()
cmds.columnLayout()
cmds.cmdScrollFieldReporter('CommandWindow',width=200, height=100)
cmds.showWindow()
Enjoy