↧
Answer by alucardj
Incorrect operators in your conditionals. use ==, not = == // is equal to = // equals if ( myBool == true ) { something = somethingElse; }
View ArticleAnswer by CoriolisStudios
You enabled the wrong camera in both if statements. You just reset CarCamera to what it originally was. Inside the if statements you have to change which camera is enabled. ie the second one should...
View Article