Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save 3dAsmol79/2936e0007efc8e57c30cc8dbc3a2f7d9 to your computer and use it in GitHub Desktop.
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
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