Pregunta

¿Cómo resolver esto.

Following error occurs from maya. I am doing the following in Filemenu.mel file. this runs at the startup.

pitón ( "saveCentral_fromPath importación"); . . .

runSaveCentral mundial proc () {

python("saveCentral_fromPath.saveCentral()");
python("a._first_()");  

}

. . .         menuItem -label ( "Guardar central") -en 1             -annotation ( "publicar: copiar al área central")             -command ( "runSaveCentral ()") publishItem;

# Error: file: S:/xxxxxxxx/scripts/maya/melTEST/FileMenu.mel line 64: class saveCentral_fromPath has no attribute 'saveCentral'
# Traceback (most recent call last):
#   File "<maya console>", line 1, in <module>
# AttributeError: class saveCentral_fromPath has no attribute 'saveCentral' # 

Brgds,

knish

¿Fue útil?

Solución

python("import saveCentral_fromPath");
.
..

global proc runSaveCentral()

{
    python("saveCentral_fromPath.saveCentral()._first_()");
#               filename.classname.functionname
}

.
.
.
menuItem -label ("save Central") -en 1
-annotation ("publish : copy to central area")
-command ("runSaveCentral()") publishItem;
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top