stillwwater / command_terminal

Unity Command Terminal: In-Game Console
MIT License
445 stars 60 forks source link

Fix 'is never assigned to' warnings #24

Closed aganm closed 3 years ago

aganm commented 3 years ago

Unity was giving me 3 warnings:

Assets\3rdParty\CommandTerminal\Terminal.cs(42,32): warning CS0649: Field 'Terminal.InputContrast' is never assigned to, and will always have its default value 0

Assets\3rdParty\CommandTerminal\Terminal.cs(38,31): warning CS0649: Field 'Terminal.RightAlignButtons' is never assigned to, and will always have its default value false

Assets\3rdParty\CommandTerminal\Terminal.cs(37,31): warning CS0649: Field 'Terminal.ShowGUIButtons' is never assigned to, and will always have its default value false

I fixed them.