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 Kyuur · Jul 01, 2013 at 06:31 PM · arrayloopsendmessageparent-childreceiver

SendMessage within a SendMessage Receiver

Hello folks,

Having a bit of a strange issue regarding SendMessage usage. What is happening is there are two classes that bounce messages back and forth. The first class has an array of gameobjects that have the second class, and it cycles through those as messages are returned. When I try to send a return message within the receiver, the receiver ends up being called twice! Here is my code flow:

Class1 sends a message.

 Party[CurrentPartyMember].SendMessage ("PromptForCommands");

Class2 has function "PromptForCommands", which enables some GUI options. It then has this function to return a message.

 void GetCommand ()
 {
     if (Input.GetKeyDown ("x"))
     {
         SendMessageUpwards ("CommandSelected", CommandList[CommandSelected]);    
         CommandListActive = false;
     }
 }

Class1 is the parent of this gameobject. It receives with this class:

 void CommandSelected (string command)
 {
     Debug.Log (CurrentPartyMember);
     Commands[CurrentPartyMember] = command;
     CurrentPartyMember++;
         
     Party[CurrentPartyMember].SendMessage ("PromptForCommands");
 }

And the cycle continues (waiting for input). The odd thing that happens here, is if you look at the debug after one 'cycle', you see this!

 0
 1

Instead of there just being one Debug, there is two. However, if I move the SendMessage from my "CommandSelected" function and move it to "Update"...

 0

So clearly there is some issue with sending a message within my receiver. I have put a debug in the "GetCommand" function which returns the message, but it is only ever executed once. So my question is how is my "CommandSelected" happening twice? I'm not telling it to execute anywhere.

I can solve this by putting the code into my Update instead, but then I am calling the SendMessage every frame as opposed to just when it needs to be called. If anyone has some insight on this it would be very much appreciated!

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

0 Replies

· Add your reply
  • Sort: 

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

15 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

Related Questions

C# SendMessage to objects in array 2 Answers

Add object into an array without continuously adding it or looping. 1 Answer

Determining groups in a 2D array by checking neighbours (and their neighbours etc) 2 Answers

Random NullReferenceException 0 Answers

Accessing an Array in another function 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