Is there a way I can remove certain warnings on my Console? Like, just hide them or something.
I’ve tried googling but can’t find any.
And the reason I’m doing this is because I used SetActiveRecursively instead of SetActive.
Unity is saying that SetActiveRecursively is useless because SetActive is now also inherited by children, but that doesn’t seem to be the case for me. When I use SetActive to activate my object, it doesn’t really activate the children of that object, while in SetActiveRecursively, it does. So everything is now working fine and properly, but I just wanted to get rid of the annoying warnings that comes up on my console everytime I build.