Hello,
So as the title says, whenever i paste code in my script, every first " { " will simply go down one line, heres an example:
Before copy-pasting:
void Update() {
print(myState);
if (myState == States.menu) {
state_menu();
}
After:
void Update()
{
print(myState);
if (myState == States.menu)
{
state_menu();
}
How can I stop/avoid this to happen in Visual Studio? Thanks in advance.