Here is a small list of additional tips for python script for maya, maybe expand in the future. 1. You can call the type() function to get the type of your current variables or literals. e.g. type(1) type(x) 2. You can call the dir() function to get all the related attributes of specific objects. e.g.… Continue reading Python For Maya additional Tips
Tag: maya
Python For Maya P.3
Big Picture In this article, I am going to demonstrate the following key aspects: 1. Writing python to create a new maya interface 2. How to design your own tools 3. How to share your scripts with other people 4. More about Python function I will discuss these features by giving simple two cases, basically,… Continue reading Python For Maya P.3
Python For Maya P.2
OK! Welcome back, now it's part 2. In the last article, I introduced some basic work flow related maya python. In this article, I will introduce some common maya commands for scripting. I will also talk about Python list, python functions, and branches and loops. Hope this article may be useful for you. Common Commands… Continue reading Python For Maya P.2
Python For Maya P.1
Hello, everyone. I am trying to relocate my old blog technical articles to this new website. Hopefully, these articles can be helpful to you... This time, I am going to show you some basic things about writing python scripts for maya. OK, first thing first, why python? Just my personal opinion, I believe Python can… Continue reading Python For Maya P.1