Showing results for on docs.flatredball.com
Adding Multiple Players
Introduction
Beefball is intended to be a competitive multiplayer game. So far we only have one PlayerBall instance, so let's...
Introduction
Beefball is intended to be a competitive multiplayer game. So far we only have one PlayerBall instance, so let's...
...Go to Player.cs
Add the following code to the Player.cs file
partial void CustomInitializeTopDownInput()
{
this.MovementInput = InputManager.Keyboard.Get2DInput(
Add the following code to the Player.cs file
partial void CustomInitializeTopDownInput()
{
this.MovementInput = InputManager.Keyboard.Get2DInput(
...You can add multiple gamepads for multiplayer games.
Set the initial control to have focus by setting its
IsFocused = true
For example, the following...
Set the initial control to have focus by setting its
IsFocused = true
For example, the following...
Multiple Players
Introduction
This walkthrough looks at the FlatRedBall Multiplayer Platformer project and explains the important details of creating a (local) multiplayer game similar...
Introduction
This walkthrough looks at the FlatRedBall Multiplayer Platformer project and explains the important details of creating a (local) multiplayer game similar...