Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 karlleh · Oct 22, 2015 at 08:15 AM · functiononclick

[Turn-based] button OnClick() event to ends unit action

Hi,

I am trying to create a turn-based strategy game, and I have attached EndUnitAction() method on a "Wait" button which will end the unit's turn and select the next available unit.

However, when I clicked the "Wait" button when selecting the first unit (Player1), it will loop through the Units array and ends all my units action immediately instead of selecting the next unit (which should be Player2).

QS) Is there anyway for me to assign the method to a controller and get the Player's name or ID into EndUnitAction(), something like sender object? Or is there a better way to do this?

alt text

//Unit Class

     public void EndUnitAction() {
         if (!isActiveAndEnabled)
             return;
 
         // Player 2 & 3 gets affected when player 1 ends turn
         hasMoved = true;
         hasAttacked = true;
 
         GameManager.instance.SwitchPlayer();
     }

// Game Manager class (overloaded method called by EndUnitAction)

     public void SwitchPlayer() {
         // If is enemyTurn, disallow switching to player units.
         if (enemyTurn)
             return;
 
         for (int i = 0; i < units.Length; i++) {
             if (units[i].isHostile == false)
             {
                 if (units[i].hasMoved == false || units[i].hasAttacked == false) {
                     nextUnit = units[i];
                     SwitchPlayer(nextUnit);
                     break;
                 }
             }
         }
     }
 
     /// <summary>
     /// Switch to a player by providing the Unit instance
     /// </summary>
     public void SwitchPlayer(Unit newUnit) {
         // If is enemyTurn, disallow switching to player units.
         if (enemyTurn)
             return;
 
         DisableAllPlayers();
 
         unit = newUnit;
         unit.tileX = (int)newUnit.transform.position.x;
         unit.tileY = (int)newUnit.transform.position.y;
 
         TileMap.instance.mapUnit = unit;
         CameraManager.instance.SelectCharacter(unit);
 
         RefreshCharacterInfo();
 
         spotlight.transform.position = unit.transform.position;
         GameManager.instance.spotlight.enabled = true;
         unit.enabled = true;
     }

By default it should not be able to end a unit's turn when it is disabled, but since I am looping the SwitchPlayer() function which will enable the new unit, Player2 and Player3 action ended immediately as well, so I am suspecting that the onClick events actually triggers "Player1.Unit.EndUnitAction" > "Player2.Unit.EndUnitAction" > "Player3.Unit.EndAction" in sequence.

Thanks in advance for any advise.

screen-shot-2015-10-22-at-95710-am.png (25.6 kB)
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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

My function doesn't appears in the OnClick button script 5 Answers

Android, function. 1 Answer

LoadOnClick Script doesnt appear in a Canvas Function 0 Answers

How to add an IF statement based on a button click 3 Answers

Acsessing a script in the project folder 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