I have a heck of a problem. I have thirty (30) buttons in a proposed trivia game, they are laid out in the following configuration - top row (A,B,C,D,E,F,G,H,I,J, ) second row (0,1,2,3,4,5,6,7,8,9, and a third row which are numbered (00,01,02,03,04,05,06,07,08,09). Using these combinations of buttons and clicking one and only one from each row I have a thousand (1000) - three (3) button combinations. E.g.: A27 would be one combination of the thousand possibilities. These are not random combinations each opens a very specific scene.
What I am trying to do is create a C# script that when I click any of these three (3) button combinations it will open a new scene. Once that scene is open I’m okay because then have my own scripts attached to the single buttons in the new scene to continue to a further scene.
What I can’t figure out is the syntax, should I use “if Statements such as - if (Btn_A) && (Btn_1) && (Btn_01) then load scene such and such? Then do I attach the script to the canvas then to each of the three button combinations (A 1000 Scripts combinations)? I have been trying to figure this out for two months (It’s Driving Me Nuts).
Hellllllllppppp!!!