A little Modo Script for Toggling SubDs

Over on Luxology’s forum, a user requested a way to toggle the SubDs to speed up big models.

Here’s a little script that toggles SubDs in Modo:

------------------------------------------

#perl
#BY: Kerwin Rabbitroo
#version 1.6 (modo2)
#This script toggles SubDs on and Off
#

my $savedSetName = “ZZZVL_toggle_subD_kerwinRR”;

if (lx(”!select.useSet \”$SavedSetName\” \”select\”")) {
lx(”poly.convert face subpatch [1]“);
lx(”!select.editSet \”$SavedSetName\” \”remove\”");
}
else {
lx(”select.polygon add type subdiv 1″);
lx(”!select.editSet \”$SavedSetName\” \”add\”");
lx(”poly.convert face subpatch [1]“);
}

——————————————————-

Download here: http://www.rabbitroo.com/Modo/toggleSubD.zip

0 Responses to “A little Modo Script for Toggling SubDs”


  1. No Comments

Leave a Reply

You must login to post a comment.