Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

348
Vistas
Character Selection With Photon PUN2/Unity

So I have a simple character selection screen set up - 5 buttons with colors - when a client clicks on a button, that button is not interactable anymore. I also have it so if the player wants a different character, they can click another available one, and then it gets set to non-interactable, and their previous choice is re-enabled. BUT, if another client selects a character, the 1st clients choice get rewritten to whatever client #2 selected.

I have setup an RPC to handle the syncing of choice, but am not sure how to go about fixing it so that each player can select a character.

This is the whole script that handles character selection. The "OnSelect" and "OnClicked" are for the buttons.

public class CharacterSelect : MonoBehaviour
{
    PhotonView PV;

    [SerializeField] public Button[] characters;

    private Button lastClicked = null;

    private void Awake()
    {
        PV = GetComponent<PhotonView>();
    }


    [PunRPC]
    public void OnSelect(int id)
    {
        if(lastClicked != null)
        {
            lastClicked.interactable = true;
        }

        characters[id].interactable = false;
        lastClicked = characters[id];

    }

    public void OnClicked(int id)
    {
        PV.RPC("OnSelect", RpcTarget.All, id);
    }
}
over 4 years ago · Santiago Trujillo
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda