Notifications
Clear all

[Closed] List a portion of an array

How would i affect just a portion of an array by skipping the first one.


testObjs = #()
for obj in selection do
(
	appendIfUnique testObjs obj
)
newList = testObjs[3..(testObjs.count)]

5 Replies
nList = #()
for i = 2 to selection.count do
(
appendIfUnique nList selection[i]
)

Hope this is it.

 em3

what does your “appendIfUnique” function look like if you don’t mind my asking?

appendIfUnique is a maxscript method. It’s not a custom function.

 lo1

what is the logic of using appendIfUnique while collecting nodes from the selection set to an empty array?
It’s not like the selection set can contain the same node twice…

I do it as a precautionary and on top of that I plan to expand on it making it more useful then.