Cycle Camera Views

Smart people ~ Great Scripts
User avatar
clintonman
Captain
Posts: 5429
Joined: 21 May 2009, 21:08
Type the number ten into the box: 0
Location: California
Contact:

Re: Cycle Camera Views

Post by clintonman »

trueBlue wrote: 24 Jan 2022, 02:48 Using your cycle script, I added Cycle Select to your Select scripts
Select Cycle panel.png
Can you take a look at the scripts?
I think the 3D Groups and Skeletons work pretty well
Maybe there is a better way
The 3D Objects cycle is including group objects. The default tab select groups has ' && Node.ConExists(subobj, "Mesh")' to prevent group selection, so i think the cycle tab groups also needs it.

Code: Select all

		if(!Node.IsLight(node) && !Node.IsCamera(node) && Node.ConExists(node, "WldMatrix") && !Node.Exists(node + "/Skeleton") && Node.ConExists(node, "Mesh")) {
			objects.push(node);
		}
Clinton Reese

http://clintons3d.com
Post Reply