Null Exception when attempting to change aspect ratio in Game Mode

I’m working in Unity version 2020.1.9f1, and I was about to start work on my UI so I went to go try the aspect ratio for when I make the anchor points for the panels. When I try to change from 16:9 to free aspect, I get a Null Reference error as soon as I click it. I attached a .txt file containing the error. I have any idea what I could have changed that would prompt something like that. Any ideas?

6453027–722838–unityerror.txt (5.81 KB)

It’s always the same process to track down null references, the most common error in the world.

Some notes on how to fix a NullReferenceException error in Unity3D

  • also known as: Unassigned Reference Exception
  • also known as: Missing Reference Exception

http://plbm.com/?p=221

The basic steps outlined above are:

  • Identify what is null
  • Identify why it is null
  • Fix that.

Expect to see this error a LOT. It’s easily the most common thing to do when working. Learn how to fix it rapidly. It’s easy. See the above link for more tips.

I’m aware of how null exceptions work. What I’m not aware of is what it’s pointing to as the issue.

I have the exact same issue… hope someone can help.