playMaker

Author Topic: Two Player [SOLVED]  (Read 1599 times)

stunterz

  • Playmaker Newbie
  • *
  • Posts: 2
Two Player [SOLVED]
« on: September 22, 2017, 07:12:26 AM »
Hey, i'm trying to make a two player split screen game that only works with controller but the problem is whenever i try to move them around they both move at the same time can anyone help me with that?
« Last Edit: September 28, 2017, 03:44:53 AM by djaydino »

Rabagast

  • Hero Member
  • *****
  • Posts: 683
    • Homepage
Re: Two Player
« Reply #1 on: September 22, 2017, 11:03:56 PM »
It's because you probably use the same key input on both players.
Check out our homepage. http://www.walsberg.no
Or my personal game blog for news about my games. http://retro-tetro.walsberg.no

Thore

  • Sr. Member
  • ****
  • Posts: 480
Re: Two Player
« Reply #2 on: September 24, 2017, 09:53:59 AM »
Hey, i'm trying to make a two player split screen game that only works with controller but the problem is whenever i try to move them around they both move at the same time can anyone help me with that?

As Rabagast said, probably the same controls assigned twice. Also, be sure you use Unity's InputManager which can be easily overlooked. You assign the controls there, and then you refer to buttons by the name you gave them. You should probably do this each for both players.
« Last Edit: September 24, 2017, 09:56:34 AM by Thore »

stunterz

  • Playmaker Newbie
  • *
  • Posts: 2
Re: Two Player
« Reply #3 on: September 24, 2017, 12:17:16 PM »
Thanks guys i'll try it