Great Tip. Thanks. I was wondering is there a way to select multiple rooms for filtering out. I tried the string contains "one room" && "Two Room" in the code block, but it didnt work. Please let me know how to go about it.
thank you for this nice video ^^... I want to ask... will filter by boolean mask fail if ever, the boolean list (mask input) is a nested list? thank you ^^
Thanks for the kind words! Typically your bool list needs to match the same structure as your input list of elements. So if that is nested, your bool list is nested as well. It would also require some list@level manipulation, I believe. Overall, it is a bit easier when working with a flat list.
This is one of the better explanations for filter by bool mask I have seen. Thanks for keeping it clean and simple.
ListFilterByBoolMask
Gavin Crump's favourite node 😄
mine too! 😁
I'm leaving lists alllll over the place now. Thanks!
For sure!
best one so far, thank you!
Glad the video helped out!
This is some great explanation! Thanks!
Thanks for the kind words. Glad it helped.
This was a great help, thanks!
Glad to hear it!
Very nice Tutorial
Great Tip. Thanks. I was wondering is there a way to select multiple rooms for filtering out. I tried the string contains "one room" && "Two Room" in the code block, but it didnt work. Please let me know how to go about it.
Just saw this comment (apologies), I’ll make a video demoing that. But in short clockwork’s string. ContainsMultiple will do this.
Too helpful!
thank you for this nice video ^^... I want to ask... will filter by boolean mask fail if ever, the boolean list (mask input) is a nested list? thank you ^^
Thanks for the kind words! Typically your bool list needs to match the same structure as your input list of elements. So if that is nested, your bool list is nested as well. It would also require some list@level manipulation, I believe.
Overall, it is a bit easier when working with a flat list.
@@DesignTechUnraveled thank you for these pointers... I should do more trial and error with this... ^^ best regards