Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by imnickb · Apr 10, 2013 at 01:39 PM · javascriptarrayiteratesimon-says

Loop Through Entire Array - Simon Game

I'm trying to make a Simon Says type game and I'm storing all of Simons random color choices and integers in an array. I have it working so that Simon makes a choice, pushes that choice into an array and then I loop through the entire array. The problem I'm having is that even though the values I'm storing in the array are correct (I'm printing them to be sure), when I itterate through the array it plays the same square back. Here's what I have. I'm sure it's problem with for (var storedSquare in simonArray).

 #pragma strict
 
 var greenSquare : GameObject;
 var redSquare : GameObject;
 var blueSquare : GameObject;
 var orangeSquare : GameObject;
 var chosenSquare : GameObject;
 static var simonStoredColor : String;
 var beforeGameWait : float = .75;
 var betweenSimonChoiceWait : float = .75;
 var afterSimonsTurnWait : float = .75;
 var simonArray = Array ();
 
 function Start ()
 {
     ClickHandler.waitingForPlayer = false;
     simonArray.length = 0;
     pickRandomSquare();
 }
 
 function Update()
 
 {
 
 }
 
 function pickRandomSquare ()
 {
     yield WaitForSeconds(beforeGameWait);
     var randomSquare : int = Random.Range(1, 5);
 
     simonArray.Push(randomSquare);
 
     for (var storedSquare in simonArray)
     {
     
         yield WaitForSeconds(betweenSimonChoiceWait);
     
         if (randomSquare == 1)
         {
             chosenSquare = greenSquare;
             chosenSquare.renderer.enabled = true;
             simonStoredColor = "Green";
             chosenSquare.audio.Play();        
         }
         if (randomSquare == 2)
         {
             chosenSquare = redSquare;
             chosenSquare.renderer.enabled = true;
             simonStoredColor = "Red";
             chosenSquare.audio.Play();    
         }
         if (randomSquare == 3)
         {
             chosenSquare = blueSquare;
             chosenSquare.renderer.enabled = true;
             simonStoredColor = "Blue";
             chosenSquare.audio.Play();        
         }
         if (randomSquare == 4)
         {
             chosenSquare = orangeSquare;
             chosenSquare.renderer.enabled = true;
             simonStoredColor = "Orange";
             chosenSquare.audio.Play();    
         }
         
         print(simonArray);
         
         yield WaitForSeconds(afterSimonsTurnWait);
         chosenSquare.renderer.enabled = false;
     }
     
     ClickHandler.waitingForPlayer =true;
 }
Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by imnickb · Apr 10, 2013 at 02:06 PM

I got it... I was iterating through the array and calling each value pulled out of the array storedSquare. But then I doing my if check against the variable randomSquare, which is the random value that simon just came up with with, which is going to be the same value because simon just generated it and nothings changed it since then. I anybody stumbles upon this question and is having the same trouble I was, here's my new script:

 #pragma strict
 
 var greenSquare : GameObject;
 var redSquare : GameObject;
 var blueSquare : GameObject;
 var orangeSquare : GameObject;
 var chosenSquare : GameObject;
 
 var beforeGameWait : float = .75;
 var betweenSimonChoiceWait : float = .75;
 var afterSimonsTurnWait : float = .75;
 
 var simonArray = Array ();
 
 function Start ()
 {
     ClickHandler.waitingForPlayer = false;
     simonArray.length = 0;
     pickRandomSquare();
 }
 
 function Update()
 
 {
 
 }
 
 function pickRandomSquare ()
 {
     yield WaitForSeconds(beforeGameWait);
     var randomSquare : int = Random.Range(1, 5);
 
     simonArray.Push(randomSquare);
 
     for (var storedSquare in simonArray)
     {
     
         yield WaitForSeconds(betweenSimonChoiceWait);
     
         if (storedSquare == 1)
         {
             chosenSquare = greenSquare;    
         }
         if (storedSquare == 2)
         {
             chosenSquare = redSquare;
         }
         if (storedSquare == 3)
         {
             chosenSquare = blueSquare;    
         }
         if (storedSquare == 4)
         {
             chosenSquare = orangeSquare;
         }
         
         chosenSquare.renderer.enabled = true;
         chosenSquare.audio.Play();    
         
         print(simonArray);
         
         yield WaitForSeconds(afterSimonsTurnWait);
         chosenSquare.renderer.enabled = false;
     }
 
     ClickHandler.waitingForPlayer =true;
 }
Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

10 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

"For"-Loop only works for final element in array 1 Answer

Ways to optimize this code? iterate through inventory 0 Answers

Is there a decent tutorial for a local high score table (android)? 1 Answer

Error when debuging array elements name 1 Answer

Sorting arrays? 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges