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 SweetPotatoes · May 04, 2015 at 05:13 AM · c#scripting problemcontrollerlimitgamepad

Limit number of face buttons being simultaneously held.

Hi everyone,

I'm making a game were the play has to move their character by holding down the face buttons and dragging their limbs similar to Mount Your Friends). Though I'm now stuck and have been trying to figure out a way to limit the number of face buttons that can be used simultaneously down to two.

If anyone could help me out on this matter, I would be very grateful. I've cut out a bit of code from the beginning of the FixedUpdate() just to make it shorter to read.

Cheers

 using UnityEngine;
 using System.Collections.Generic;
 using XInputDotNetPure;
 
 public class GamePadSetupP1 : MonoBehaviour {
     
     private bool playerIndexSet = false;
     private int player1 = 1;
     private GamePadState padState;
     private GamePadState prevPadState;
 
     public PlayerIndex playerIndex;
 
     public GameObject leftFoot;
     public GameObject rightFoot;
     public GameObject leftArm;
     public GameObject rightArm;
 
     private aButtonGpadP1 inputA;
     private bButtonGpadP1 inputB;
     private yButtonGpadP1 inputY;
     private xButtonGpadP1 inputX;
 
     public void Start()
     {
         inputA = rightFoot.GetComponent<aButtonGpadP1>();
         inputB = leftFoot.GetComponent<bButtonGpadP1>();
         inputY = leftArm.GetComponent<yButtonGpadP1>();
         inputX = rightArm.GetComponent<xButtonGpadP1>();
     }
 
     public void FixedUpdate()
     {
         if (padState.Buttons.A == ButtonState.Pressed) //When A is held down the players right leg can be moved.
         {
             inputA.InputA();
             Debug.Log("Player 1 Pressed Input A");
         }
         
         if (padState.Buttons.B == ButtonState.Pressed) //When B is held down the players left leg can be moved.
         {
             inputB.InputB();
             Debug.Log("Player 1 Pressed Input B");
         }
         
         if (padState.Buttons.Y == ButtonState.Pressed) //When Y is held down the players left arm can be moved.
         {
             inputY.InputY();
             Debug.Log("Player 1 Pressed Input Y");
         }
         
         if (padState.Buttons.X == ButtonState.Pressed) //When X is held down the players right arm can be moved.
         {
             inputX.InputX();
             Debug.Log("Player 1 Pressed Input X");
         }
     }
 }

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
1
Best Answer Wiki

Answer by yashpal · May 04, 2015 at 05:27 AM

hello @SweetPotatoes ,

it is really simple

  public void FixedUpdate()

  {
      int countPressedButton =  0; 

      if (padState.Buttons.A == ButtonState.Pressed) //When A is held down the players right leg can be moved.
      {
          inputA.InputA();
          Debug.Log("Player 1 Pressed Input A");
          countPressedButton  ++;
      }
      
      if (padState.Buttons.B == ButtonState.Pressed) //When B is held down the players left leg can be moved.
      {
          inputB.InputB();
          Debug.Log("Player 1 Pressed Input B");
          countPressedButton ++;
      }
      
      if ( (countPressedButton <2) && ( padState.Buttons.Y == ButtonState.Pressed)) //When Y is held down the players left arm can be moved.
      {
          inputY.InputY();
          Debug.Log("Player 1 Pressed Input Y");
          countPressedButton ++;
      }
      
      if ( (countPressedButton <2) && ( padState.Buttons.X == ButtonState.Pressed ) ) //When X is held down the players right arm can be moved.
      {
          inputX.InputX();
          Debug.Log("Player 1 Pressed Input X");
          countPressedButton ++;
      }
  }


Hope helps you.

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 SweetPotatoes · May 11, 2015 at 06:01 PM 0
Share

Thank you, it working now.

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

Xbox Controller works, when the controller disconnected and connected to Xbox again, the new input stops working 0 Answers

How do I limit the x axis on a first person controller? 1 Answer

Setting up inputs for multiple gamepads/controllers 1 Answer

Gamepad UI Controls: Always have the first button selected. 0 Answers

Hello All. How do you access the Run Speed, Jump Speed...ect variables in Unity 5s' new First Person Controller?? 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