Wall Worm Forums

Design Tools => Wall Worm Model Tools => Bug Reports => Topic started by: mark2580 on October 31, 2024, 02:47:57 AM

Title: Conflict with FractureVoronoi script
Post by: mark2580 on October 31, 2024, 02:47:57 AM
There was a need to use the FractureVoronoi (https://www.scriptspot.com/3ds-max/scripts/fracture-voronoi) script. I was surprised to find that it completely breaks when WallWorm is installed in 3ds max.
I have 3ds max 2012 and 2020 installed. Both have this bug. Is there any way to fix it?
(https://i.imgur.com/kZyjshp.png)
(https://i.imgur.com/iJcYOxV.png)
Title: Re: Conflict with FractureVoronoi script
Post by: wallworm on November 01, 2024, 06:41:41 PM
Thanks for reporting. I looked at that script and cannot fathom how WW is interfering with it (it doesn't seem to like the additional tools WW adds to Slice Modifiers).

Before running that script, click F11 and enter this code into the white MAXScript Listener:

callbacks.removeScripts id:#WallWormAutoSliceModID
Now the extra slice modifier properties don't get added to the objects and the script should work. Note that even though this addresses the issue for that script, the slice custom attributes being added are very valuable when manually adding a slide modifier, so once you have disabled that, you will need to re-enable if you want them back in the same session by running this code in the MAXScript Listener:

::wallwormSlicemodOps.initiateCallbacks()
Title: Re: Conflict with FractureVoronoi script
Post by: wallworm on November 01, 2024, 07:02:14 PM
Additional information:

To permanently turn on the Wall Worm Slice modifier options:

::wallwormSlicemodOps.AutoSliceMod = true
::wallwormSlicemodOps.saveSettings()
::wallwormSlicemodOps.initiateCallbacks()

or to permanently turn it off:

::wallwormSlicemodOps.AutoSliceMod = false
::wallwormSlicemodOps.saveSettings()
::wallwormSlicemodOps.initiateCallbacks()
Title: Re: Conflict with FractureVoronoi script
Post by: mark2580 on November 03, 2024, 07:40:11 AM
Quote from: wallworm on November 01, 2024, 06:41:41 PMBefore running that script, click F11 and enter this code into the white MAXScript Listener:
callbacks.removeScripts id:#WallWormAutoSliceModID
Okay, this works.
Quote from: wallworm on November 01, 2024, 07:02:14 PMAdditional information:

To permanently turn on the Wall Worm Slice modifier options:

::wallwormSlicemodOps.AutoSliceMod = true
::wallwormSlicemodOps.saveSettings()
::wallwormSlicemodOps.initiateCallbacks()

or to permanently turn it off:

::wallwormSlicemodOps.AutoSliceMod = false
::wallwormSlicemodOps.saveSettings()
::wallwormSlicemodOps.initiateCallbacks()
And this is what I don't understand at all. Should I also send this to MAXScript Lister??? Because it seems it didn't give any result.
Title: Re: Conflict with FractureVoronoi script
Post by: wallworm on November 03, 2024, 12:03:16 PM
Those are three lines of code to run in sequence in the MAXScript listener. Or open the MAXScript Editor and paste the entire lines and execute the script in full.
Title: Re: Conflict with FractureVoronoi script
Post by: mark2580 on November 03, 2024, 10:58:59 PM
Quote from: wallworm on November 03, 2024, 12:03:16 PMThose are three lines of code to run in sequence in the MAXScript listener. Or open the MAXScript Editor and paste the entire lines and execute the script in full.
Yes, it seems to have worked. I restarted 3ds max and the script worked fine without entering any commands. 👀
Title: Re: Conflict with FractureVoronoi script
Post by: wallworm on November 04, 2024, 08:39:13 AM
Glad to hear :)