You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
539 B
20 lines
539 B
using UnityEngine;
|
|
|
|
namespace Mirror.Examples.Pong
|
|
{
|
|
public class Player : NetworkBehaviour
|
|
{
|
|
public float speed = 30;
|
|
public Rigidbody2D rigidbody2d;
|
|
|
|
// need to use FixedUpdate for rigidbody
|
|
void FixedUpdate()
|
|
{
|
|
// only let the local player control the racket.
|
|
// don't control other player's rackets
|
|
if (isLocalPlayer)
|
|
rigidbody2d.velocity = new Vector2(0, Input.GetAxisRaw("Vertical")) * speed * Time.fixedDeltaTime;
|
|
}
|
|
}
|
|
}
|