General Category > ASL Scripts
collapse points command
BOB_I_Ts:
there not commands but the are ASL code functions
here is my attempt at visualizing how they work imagine liberian working at book shelf(array) at local library
function pop means liberian would take last book off the shelf read out its contents (sets value to assigned counter !) then throw it in a bin
function push means liberian writes new book based on parameter values then put it on the end of the shelf
unsure how a literal pop command script would work but you could change collapse script to be a push / (nudge command)
example
--- Code: ---if ($xyz == "x") {
$at = project.curObject.LookupAttribute("collapse");
$sp = $at.GetPoint3Value();
$p.x = $sp.x;
}
--- End code ---
change to $p.x = $p.x + , $p.y = $p.y + and $p.z = $p.z + like so
--- Code: ---if ($xyz == "x") {
$at = project.curObject.LookupAttribute("collapse");
$sp = $at.GetPoint3Value();
$p.x = $p.x + $sp.x;
}
--- End code ---
then attribute "collapse" should just nudge distance of the value to each point set separately !
collapse command is first mesh editing command but first one i did was new material.zip 2007 but seems Steve did one better with updating anim8or with edit > copy material and paste new material so it would be pointless me completing that script
i hope to do command related to UV were these push pops will come handy ,first i need to finish editing model for that v0.9 f8ce plug-in before i attempt
kreator:
I was thinking perhaps there might be something to do a "hide" for points Now that would be a useful script!
BOB_I_Ts:
ASL restricts configure GUI menu :( , you can just set wire to view outline points and smooth to only show outline for mesh
i saw a script which stores selections in sticky topic it maybe possible to use similar method to hide points but would also hide polygons connected to selected point as a hide selection , unhide selection ,it kinda seem scary script to attempt though loss undo data just by using render preview
i think create new object then copy paste deattache face is much more safe method
Navigation
[0] Message Index
[*] Previous page
Go to full version