Hey @WaYWO Such a great work you are doing with this script. One thing that kinda bothers me is the arrow is too small to click to get to the next page. Is there a way I could toggle between the pages/tabs for the different options ? I want to set it on a hotkey so I can toggle between those instead of clicking the button. That'd be great, I tried to do it but couldn't get it right.
Hi, I heard about CreasePlus through Wizix. It came highly recommended, and I can see why--it's intuitive as heck! Anyway, I was hoping I could get some help:
1. Hbevel doesn’t seem to work.None of the edges bevel, and the attribute editor window for it has a value of 1 that can’t be changed.Is there an order of operation that needs to be followed?
2. How does one execute the delpyc.bat? Maya seems to crash more and more each time I try to do anything with Creaseplus, and I’m kind of a dummy with Maya.
Hello! Is there a way to clean up the scene after boolean operations? I'm left with a bunch of objects in the outliner and the best I can find in the tool is the Hide option.
Hi, I heard about CreasePlus through Wizix. It came highly recommended, and I can see why--it's intuitive as heck! Anyway, I was hoping I could get some help:
1. Hbevel doesn’t seem to work.None of the edges bevel, and the attribute editor window for it has a value of 1 that can’t be changed.Is there an order of operation that needs to be followed?
2. How does one execute the delpyc.bat? Maya seems to crash more and more each time I try to do anything with Creaseplus, and I’m kind of a dummy with Maya.
EDIT: oh, i watched the "fast forward GIF", and saw that after you used the hbevel, you somehow adjusted the value and that HOW is, what I think is crucial, after apply the bevel press the middle mouse button to adjust the bevel anyway after doing something else is there a way to adjust that again?
I recently purchased CreasePlus, but I cannot get it to work correctly in Maya2022 -- there are quite a few Python errors cropping up when trying to use it. Is there an easy way to get around that? Is there a version available for M2022? Please let me know - thanks.
Install issues. This is what Im getting when I run the the latest update in Maya 2026,
import maya.cmds as cmds
from CreasePlus import CreasePlusMain
CreasePlusMain.start()
# Error: ModuleNotFoundError: file C:\Users/xxxx/Documents/maya/2026/scripts\CreasePlus\CreasePlusCore.py line 25: No module named 'CreasePlusNodes'
Thanks for any help PS. All the scripts and folders seem to be all in the correct place.
Hi, The installation procedure changed.
Here is some sort of troubleshooting guide. Any of these (in any order) might solve the issue. But if you want a bullet-proof run, maybe execute all of these :
1. Re-install Crease+ by dropping the CreasePlus_install.py in the viewport and restarting maya 2. After 1. Run this instead
[code] import maya.cmds as cmds
from CreasePlus import CreasePlusMain
CreasePlusMain.start()
if not cmds.pluginInfo("CreasePlusNodes", q=True, loaded=True):
cmds.loadPlugin("CreasePlusNodes.py")
[/code]
3. Delete the older files (from the legacy installation) found there : Documents/Maya/MAYA_VERSION/scripts 4. After any of the above try [code] cmds.loadPlugin("CreasePlusNodes.py") [/code] if it errors out, there is something to do with the MTypeID of the nodes, you need to change these hexadecimals to some other random hexadecimal number values.
Replies
Such a great work you are doing with this script. One thing that kinda bothers me is the arrow is too small to click to get to the next page.
Is there a way I could toggle between the pages/tabs for the different options ? I want to set it on a hotkey so I can toggle between those instead of clicking the button. That'd be great, I tried to do it but couldn't get it right.
Hi, I heard about CreasePlus through Wizix. It came highly recommended, and I can see why--it's intuitive as heck! Anyway, I was hoping I could get some help:
1. Hbevel doesn’t seem to work.None of the edges bevel, and the attribute editor window for it has a value of 1 that can’t be changed.Is there an order of operation that needs to be followed?
2. How does one execute the delpyc.bat? Maya seems to crash more and more each time I try to do anything with Creaseplus, and I’m kind of a dummy with Maya.
Anyway, thanks for developing it @WaYWO.
EDIT:
oh, i watched the "fast forward GIF", and saw that after you used the hbevel, you somehow adjusted the value and that HOW is, what I think is crucial, after apply the bevel press the middle mouse button to adjust the bevel
anyway after doing something else is there a way to adjust that again?
Can anyone confirm it working in 2023?
I followed the previous instructions here but get an invalid syntax error.
# Error: SyntaxError: file <maya console> line 2: invalid syntax
Thanks for any help
PS. All the scripts and folders seem to be all in the correct place.
Here is some sort of troubleshooting guide. Any of these (in any order) might solve the issue.
But if you want a bullet-proof run, maybe execute all of these :
1. Re-install Crease+ by dropping the CreasePlus_install.py in the viewport and restarting maya
2. After 1. Run this instead
import maya.cmds as cmds
3. Delete the older files (from the legacy installation) found there : Documents/Maya/MAYA_VERSION/scripts
4. After any of the above try
[code] cmds.loadPlugin("CreasePlusNodes.py") [/code]
if it errors out, there is something to do with the MTypeID of the nodes, you need to change these hexadecimals to some other random hexadecimal number values.