Playmaker Forum

PlayMaker Help & Tips => PlayMaker Help => Topic started by: stunterz on September 22, 2017, 07:12:26 AM

Title: Two Player [SOLVED]
Post by: stunterz 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?
Title: Re: Two Player
Post by: Rabagast on September 22, 2017, 11:03:56 PM
It's because you probably use the same key input on both players.
Title: Re: Two Player
Post by: Thore 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 (https://docs.unity3d.com/Manual/class-InputManager.html) 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.
Title: Re: Two Player
Post by: stunterz on September 24, 2017, 12:17:16 PM
Thanks guys i'll try it