BUG1. bump of misss_fast_skin_maya
Now it's easy to create shading network of fast skins, but there's something wrong with bump.
if you create node misss_fast_skin_maya, open the frame "bump shader", Maya 2008 will return an error.
// Error: Cannot find procedure "AEmisssSimpleMayaBumpNew".
Solution£º
1. open
C:\Program Files\Autodesk\Maya2008\scripts\AETemplates\AEmisss_fast_skin_mayaTemplate.mel
find the text in line 149
| editorTemplate -callCustom "AEmisssSimpleMayaBumpNew" "AEmisssSimpleMayaBumpReplace" "normalCamera"; |
change into
| editorTemplate -callCustom "AEmisssSkinMayaBumpNew" "AEmisssSkinMayaBumpReplace" "normalCamera"; |
2. or download the script and overwrite the old one.
ÏÂÔØ / Download
Bug2. Can not visualize final Gather Map
Though check "enable map visualizer" of Final Gather, Maya 2008 won't show the fg map.
It works well for
GI.
Solution£º
Input absolute path in the text field of final gather file(fgmap), for example:
| C:\project\temp\renderData\mentalray\finalgMap\default.fgmap |
Bug3. optimize Scenes Error (thanks LvYD for his solution)
Error appears when users launch optimize scenes :
// Error: Invalid flag: - ^1s
Solution£º
1. open
C:\Program Files\Autodesk\Maya2008\scripts\startup\cleanUpScene.res.mel
find the text in line 216 & 217
displayString -replace -value "- ^1s\n" m_cleanUpScene.kSummaryFmt;
displayString -replace -value "- ^1s\n" m_cleanUpScene.kSummaryFmt2; |
change into
displayString -replace -value "^1s\n" m_cleanUpScene.kSummaryFmt;
displayString -replace -value "^1s\n" m_cleanUpScene.kSummaryFmt2; |
2. or download the script and overwrite the old one.
ÏÂÔØ / Download |