Questions tagged [maya]

Autodesk Maya is a 3D modeling, animation and rendering tool used in film, TV and advertising. Only programming questions are on-topic.

Autodesk Maya is a cross-platform 3D modeling, animation and rendering tool used by many entertainment companies in film, TV and advertising.

Scripting in Maya can be done in either or . Tree Python APIs are included: maya.cmds, and maya.api for a more core-level access to the Maya behaviour.

Non-programming questions should not be posted to Stack Overflow.

Documentation

To access all the documentation for the different Maya versions: https://knowledge.autodesk.com/support/maya/getting-started/caas/simplecontent/content/maya-documentation.html

2561 questions
58
votes
13 answers

Convert pyQt UI to python

Is there a way to convert a ui formed with qtDesigner to a python version to use without having an extra file? I'm using Maya for this UI, and converting this UI file to a readable python version to implement would be really great!
Shannon Hochkins
  • 11,763
  • 15
  • 62
  • 95
23
votes
3 answers

How can I install Python modules programmatically / through a Python script?

Can I download and install Python modules from PyPi strictly inside a script, without using a shell at all? I use a non-standard Python environment, Autodesk Maya's Python interpreter. This does not come with "easy_install," and there is no "shell,"…
DoctorPangloss
  • 2,994
  • 1
  • 18
  • 22
22
votes
6 answers

Can I generate Point Cloud from mesh?

I'm trying to generate point cloud data from mesh such as (.obj) file of Maya. But, I could find out only the opposite case, point cloud to mesh on the internet. Is there any way to create "point cloud data from mesh" using 3D tools like MeshLab or…
Youn A Lee
  • 251
  • 1
  • 2
  • 4
16
votes
3 answers

How to create a .usdz animation?

You can now convert 3D models to .usdz files (uncompressed zip archive) using Apple's command line tool bundled with Xcode 10 beta. Example code to convert an .obj file to .usdz: xcrun usdz_converter magnifying_glass.obj -g frame…
Clay
  • 1,721
  • 2
  • 10
  • 18
16
votes
6 answers

How to convert object to json file for three.js model loader

I am building a browser game with three.js and I want to load a model from Maya 2013 into my scene. I have exported the model as an obj file. Now I need to know how to convert it into an JS file for the three.js-loader. This is my loader so far: …
user2259103
  • 161
  • 1
  • 1
  • 3
14
votes
1 answer

Segmentation Fault Catch

I have a python script and it will loop through bunch of maya files and do some stuff. But some time maya get seg fault and my script will stop there. I tried with signal and multiprocess. But both failed. import os, optparse, glob, json,…
Achayan
  • 5,720
  • 2
  • 39
  • 61
14
votes
2 answers

Way to iterate two items at a time in a list?

I am wondering if there is a better way to iterate two items at a time in a list. I work with Maya a lot, and one of its commands (listConnections) returns a list of alternating values. The list will look like [connectionDestination,…
Mathieson
  • 1,194
  • 2
  • 13
  • 28
12
votes
3 answers

Best process to show an OpenGL Animation in iPhone

I'm having issues being able to import a bone and skeletal animation from Maya to Blender to iPhone. Here's what I've done: install the ColladaMaya plugin to export a DAE for Blender to export used Jeff LeMarche's script to be able to export a…
Dominic Tancredi
  • 41,134
  • 7
  • 34
  • 50
10
votes
4 answers

Iterating through THREE lists at once in Python?

This might be a rather complex question since it's possible a lot of you don't know the software that I'm writing it for: Autodesk Maya 2011. I am trying to speed up a tedious slow process (rigging: giving 3d characters the ability to move) by…
Jared
  • 537
  • 2
  • 6
  • 14
10
votes
1 answer

ARKit – Replicating robot character in Motion Capture RealityKit

I'm trying to make a 3d model like robot provided by Apple in Motion Capture example (shown at WWDC 2019) which can mimic me in motion capture ARKit 3.0 by replacing robot character given by Apple. Desired Solution: Is there any special software…
Ameer Hamza
  • 103
  • 7
9
votes
3 answers

Checking if a Variable Exists in Python - Doesn't work with self

Before you down rep this post, it hasn't been asked anywhere that I can find. I'm checking for the existence of a list by using if 'self.locList' in locals(): print 'it exists' But it doesn't work. It never thinks it exists. This must be…
Vii
  • 813
  • 3
  • 20
  • 32
8
votes
4 answers

How do I calculate a 3D centroid?

Is there even such a thing as a 3D centroid? Let me be perfectly clear—I've been reading and reading about centroids for the last 2 days both on this site and across the web, so I'm perfectly aware at the existing posts on the topic, including…
jedmao
  • 10,224
  • 11
  • 59
  • 65
8
votes
1 answer

SceneKit -– How to get animations for a .dae model?

Ok, I am working with ARKit and SceneKit here and I am having trouble looking at the other questions dealing with just SceneKit trying to have a model in .dae format and load in various animations to have that model run - now that we're in iOS11…
blue
  • 7,175
  • 16
  • 81
  • 179
8
votes
3 answers

Using external GUI libraries to make user interfaces in Autodesk Maya

I develop tools in Autodesk Maya. Many of the tools I build have simple windowed GUIs for the animators and modellers to use. These GUIs often contain what you'd normally expect to see in any basic window; labels, lists, menus, buttons,…
Soviut
  • 88,194
  • 49
  • 192
  • 260
8
votes
1 answer

Using MAYA 3D Model in a .Net application

If I want to render a 3D model created by Maya and do some animation with it in a .net application what should be my choice of platform - plain WPF or XNA?
Anindya Chatterjee
  • 5,824
  • 13
  • 58
  • 82
1
2 3
99 100