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 Flaxix · Jul 14, 2012 at 09:28 PM · arraygamevariable

Array Problem - Error Code BCE0022

Hai people. I'm making a game in Unity (what else would you be making) and I don't quite understand the error. Or at least how to fix it. So, does anyone of you generous little people know the solution?

Here's my/the code I wrote/written (I like using slashes, they look awesome).

 // Use this for initialization
 function Start () {
 
 GameObjectDisappear = GameObject.FindGameObjectsWithTag ("DisappearingObject001");
 arr.Push("GameObjectDisappear");
 }
 
 var GameObjectDisappear : GameObject ;
 var arr = new Array ();
 
 
 // Update is called once per frame
 function Update () {
 }
 
 
 function OnTriggerEnter (other : Collider) {
    Destroy (GameObjectDisappear) ;
 
     }

If you find the solution, you get a telepathically taste-transmitted cookie (don't ask how I got your brain's phone number). And a smile. :)

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

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by fafase · Jul 14, 2012 at 09:45 PM

First, you shuld place the declaration at the top of your script, it is easier to read.

I would think your error comes from the fact that GameObjectDisappear is an array but you do not provide any index in your destroy function.

Try with:

 var GameObjectDisappear:GameObject[]; 
 //var GameObjectDisappear = new List.<GameObject>(); //Also possible for use
 
 // Use this for initialization
 function Start () {
 GameObjectDisappear = GameObject.FindGameObjectsWithTag ("DisappearingObject001");
 }    
 
 function OnTriggerEnter (other : Collider) {
    for (var go : GameObject in GameObjectDisappear) {
         Destroy(go);
     }
 }

This will go through the array and Destroy all objects.

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

Answer by rutter · Jul 14, 2012 at 09:45 PM

You're giving the compiler incompatible data types.

You declare a variable GameObjectDisappear of type GameObject, and try to assign the return value from GameObject.FindGameObjectsWithTag(), which returns type GameObject[].

If you're not sure why this is a crucial distinction, now is a good time to read up on arrays -- Google around a bit, you should be able to find plenty of tutorials. In a nutshell, you are trying to assign a group of values to a variable which can only contain one value. The compiler is trying to tell you that it can't do that.

If you're only looking for the one object, you might use FindGameObjectWithTag(), which will return only the first matching GameObject.

Past that, I'm not sure what you're trying to do with this arr variable. It doesn't appear to be used?

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

6 People are following this question.

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

Related Questions

Array Problem - Error Code BCE0022 1 Answer

How to find the opposite variables list? 1 Answer

Picking a Random Order for Levers 1 Answer

How to get a value from an array within another script. 1 Answer

Script static var, problems 0 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