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
-2
Question by varie-tea · Apr 02, 2014 at 10:31 AM · javascripterrorarraynameindex

IndexOutOfRangeExeption - Array index is out of range

Hello,

Does anyone know how to fix the error, I just can't figure it out and nobody else has encountered this error in combination with something like my script.

Here's the error: IndexOutOfRangeExeption: Array index is out of range. ScanConsole.Update () (at Assets/Scripts/ScanConsole.js:19)

And here's the script:

 public var computer : GameObject;
 public var textMesh : TextMesh;
 public var cam : GameObject;
 public var scanGui : GameObject;
 public var index : int = 0;
 
 public var inScanner : GameObject[] = new GameObject[1];
     
 public var isExit : boolean = false;
 public var isArrayDisplay : boolean = false;
 
 function Start () {
     textMesh = GetComponent(TextMesh);
 }
 
 //textMesh.text = "";
 
 function Update () {
     textMesh.text = "Selected: " +
     inScanner[index].transform.name;
 }
 
 function OnMouseDown () {
     if(isExit){
         cam.SendMessage("ExitGUI",
          SendMessageOptions.DontRequireReceiver);
     }
 }



Thanks!

Comment
Add comment · Show 1
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
avatar image fafase · Apr 02, 2014 at 10:34 AM 0
Share

$$anonymous$$ake index private and see if the error is still showing up. If not co$$anonymous$$g up again, it means you set index to be another value than 0 in the inspector. (And I did not downvote your quesytion)

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by ChrisJoosten · Apr 02, 2014 at 10:34 AM

You should initialize the list in the Start of Awake function

 function Start(){
 inScanner = new GameObject[1];
 }

I'm used to C#, so not sure if this is right

Comment
Add comment · Show 1 · 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
avatar image fafase · Apr 02, 2014 at 10:42 AM 0
Share

He does that in the initialization. $$anonymous$$ore likely to be something playing with the index value.

avatar image
0

Answer by varie-tea · Apr 02, 2014 at 12:36 PM

Making the index variable private worked, thanks a lot!

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

21 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 avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

NullReferenceException array 2 Answers

Error CS0029 Help? (Screenshot of Exact Error) 1 Answer

array problem 1 Answer

Find index number in an Array of a transform by it's name 1 Answer

Texture2d[]: Array index is out of rang (Javascript) 3 Answers


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