/* Script UV Editor AutoEnable v1.6 Author: Nikolay Litvinov There is no need to take care in the modifer UnwrapUVW to disable IgnoreBackFaceCull. And automatically enable UV Editor 1)Assigns unwrap UVW 2)Disables IgnoreBackFaceCull off 3)Entry in the UV Editor 4)Set subobjectLevel = polygons 5)Enables Freeform Mode transformations */ macroScript UnwrapUVW_Editor_Auto_Enable Category:"Niklit Scripts" Tooltip:"Unwrap UVW Editor AutoEnable" (macros.run "Modifiers" "Unwrap_UVW" macros.run "Niklit Scripts" "UV_Editor") macroScript UV_Editor Category:"Niklit Scripts" Tooltip:"UV Editor" ( Try (local curObj = modPanel.getCurrentObject() curObj.setIgnoreBackFaceCull off curObj.edit() curObj.unwrap.move () curObj.unwrap2.setFreeFormMode on subobjectLevel = 3 )Catch() ) messagebox("Actions are stored in Category: \"Niklit Scripts\"")