dgovil / AdvancedPythonForMaya

Course contents for my upcoming Advanced Python for Maya course

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Advanced Python for Maya

In this project, we'll be learning how to use the Python API for OpenMaya to create a variety of plugins and tools for Maya.

The OpenMaya API gives us deeper access to Maya's internals than the Commands API that is used by MEL and Python, without having to switch to using C++.

At the end of the course, we'll also be converting a Python Plugin to C++.

Software Used

For this course I'll be using the following programs:

Resources

Maya Documentation

Autodesk has great documentation for the Maya API. I highly recommend giving it a read

General Documentation

This is a general overview of how the API is structured and how it interacts with Maya. Most of this is written with C++ in mind, but it is a very useful resource.

http://help.autodesk.com/view/MAYAUL/2018/ENU//?guid=__files_API_Introduction_htm

Python 2.0 API

This is the documentation for the API we'll be covering.

It isn't as complete as the API for C++ but is easier to read

http://help.autodesk.com/view/MAYAUL/2018/ENU//?guid=__py_ref_index_html

C++ API

The C++ is the main API for Maya, and is the best reference for any of the code we'll be using.

If you can't find information on something in the Python API docs, this is the best place to fallback to.

http://help.autodesk.com/view/MAYAUL/2018/ENU//?guid=__cpp_ref_index_html

Devkit

You will want to get the Maya developer kit so that you can use autocompletion and see some of Autodesks code examples.

You can get the devkit for Maya 2016 and above here: https://www.autodesk.com/developer-network/platform-technologies/maya#

Read here on how to install the devkit

http://help.autodesk.com/view/MAYAUL/2018/ENU//?guid=__files_Setting_up_your_build_environment_htm

Older versions of Maya will either have it bundled or can reuse the devkits from above.

Books and Blogs

There are many other bits of content that are extremely useful to learn the API.

I'll be adding them here.

About

Course contents for my upcoming Advanced Python for Maya course

License:GNU General Public License v3.0


Languages

Language:Python 80.7%Language:C++ 10.2%Language:CMake 9.0%