尝试将我的一个脚本导入Maya的内存时,我的python代码出错了。
以下是代码:
import solar_system as ss
import pymel.core as pm
import random
我收到了这个错误:
# Error: unindent does not match any outer indentation level
# Traceback (most recent call last):
# File "<maya console>", line 1, in <module>
# File "C:/Users/Owner/Documents/maya/2012-x64/prefs/scripts\solar_system.py", line 66
# '''
#
# ^
# IndentationError: unindent does not match any outer indentation level #
所以,出于某种原因,它希望导入solar_system作为ss缩进甚至?我真的不明白它想要我做什么。有帮助吗?请?
答案 0 :(得分:1)
在您的文件solar_system.py
中,第66行似乎出现了缩进错误。您可能需要确保没有混合制表符和空格以进行缩进。如果您可以发布该文件的前70行,我们可以告诉您更多其他可能的错误。