“In a path pattern, * matches any number of characters (in a name), ** matches any number of levels of hierarchy, ”,
so i tried the expression like
/**/B* - /**/Book_2
/**/* - /**/Book_2
Can someone point out?
Thanks!
/**/B* - /**/Book_2
/**/* - /**/Book_2
Tim Crowson
Doesn't /** basically mean “everything” recursively? So /**/* is like saying “search for anything and find anything immediately inside it” which will give you literally everything in the scenegraph.
- /**/Book_2
part would remove that one book from everythingtamteOk, thank you, i've got that. The parent override it's children. It's not cool
it's probably because /**/* matches also the parent primitive of all of the books
so no matter that one of the child books is set to active, if the parent prim is not active none of the children are
you can use Exclude Primitives multiparm to exclude your Book_2 instead of subtracting it in Target Primitives pattern
>_<
.