Created
July 2, 2018 15:41
-
-
Save 3dAsmol79/2936e0007efc8e57c30cc8dbc3a2f7d9 to your computer and use it in GitHub Desktop.
MaxScript - Makes the current selections Wire Color Random - Easy to differentiate objects from imported models
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on btn_RandomWireColour pressed do | |
( | |
RanWireObjs = selection as array | |
for i = 1 to RanWireObjs.count do | |
RanWireObjs[i].wirecolor = color (random 0 255) (random 0 255) (random 0 255) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment