Hi, so far I’m really enjoying the course it’s really concise and the teaching method is very good. I would love to leave a 5-star review at the end of the course.
I am a little bit confused I will try to write the code below for clarification.
private Level level;
I know this is to let the compiler know that this variable is a type of Level aka The script I named Level
level = FindObjectTypeOf<Level>();
Now here it confuses me. I have already initialized the level variable as Level then why do I have to tell it again in the FindObjectTypeOf<>();?