ScriptSpot

Forum topic · General Scripting

addmodifier$ (unwrap_UVW()

By Mrjacks2o · 2025-09-04

Description

Hi

having some issues with this script if someone can help me would appreciate it

this is the example it is showing in max..
.normalMap normalList spacing normalize layOutType rotateClusters alignWidth

Layout type Back/Front
spacing 0.001
rotatecluster off

i came up with this script but cant get it to work.

$.modifiers[#Unwrap_UVW].normalMap spacing:0.001 normalize layOutType:Back/Front rotateClusters:off alignWidth:on

thank you

Comments (6)

AEI · 2025-09-05

replace all () to the type of info in (), point3 array to #([0,0,0],[1,1,1]) , float to 0.1 , boolean to true , integer to 1
this was the most basic knowledge for any programming language , all languages has same rule

AEI · 2025-09-05

replace all () to the type of info in (), point3 array to #([0,0,0],[1,1,1]) , float to 0.1 , boolean to true , integer to 1
this was the most basic knowledge for any programming language , all languages has same rule

AEI · 2025-09-04

normalMap (point3 array) (float) (boolean) (integer) (boolean) (boolean)

Mrjacks2o · 2025-09-04

sorry confused can you put the line together
so when i run the script it does mapping normal mapping and with the options pre selected

thank you

dimwalker · 2025-09-05

$.modifiers[#Unwrap_UVW].normalMap #([0,1,0],[0,-1,0]) 0.001 true 1 off on

Mrjacks2o · 2025-09-05

thank you!