Faster then GetWith Tag

Hi all, I run this code at startup for about 12 objects

void Start(){
		 Pooli  = GameObject.FindGameObjectWithTag("All");	
	CustomPool	Pool = Pooli.GetComponent<CustomPool>();
}

Is their anyway to speed this up , this is only a bit of the code … but this is slowest part right now .

It’s being run in Start, so it doesn’t really matter what the speed is since it’s just done once. It won’t result in any measurable slowdown anyway, you’re talking nanoseconds.

–Eric