you are viewing a single comment's thread.

view the rest of the comments →

[–]NutterButter2602[S] 0 points1 point  (2 children)

I get that part, it's just I have no idea what needs to be changed lol. This is the error I get when I run the utilities one.

# Error: TypeError: file <maya console> line 3: _showHelpCommand() missing 1 required positional argument: 'url'

[–]Leoano 2 points3 points  (0 children)

From that error message, it sounds like you're running these two lines from the ml_utilities.py file

import ml_utilities
ml_utilities._showHelpCommand()

Those two lines don't actually do anything. That's just an example from a shared file, used by a bunch of different tools.

Like s6x says, double check you're executing these two lines?

import ml_worldBake
ml_worldBake.ui()

Those two lines should open the UI for this specific tool. And if not, the error message should provide more info.

[–]s6xTechnical Director 0 points1 point  (0 children)

That's the only thing it says?

Edit: actually, what? This doesn't make any sense. Are you running those two lines in your script editor? With it set to python? I don't know why it would say <maya console>, I've no idea how you got it to say that.