Hi guys,
I am working with UFPS multiplayer and i want to make an rpc so this is my call:
photonView.RPC("resetHealth", PhotonTargets.All);
from: master.cs
And this is a code attached to the player in a script:
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
public class vp_BMGame : Photon.MonoBehaviour {
[PunRPC]
public void OnAwakeRPC(byte myParameter)
{
Debug.Log("RPC: 'OnAwakeRPC' Parameter: " + myParameter + " PhotonView: " + this.photonView);
}
}
And i get this error:
PhotonView with ID 1 has no method “resetHealth” marked with the PunRPC or @PunRPC(JS) property! Args:
But why what am i doing wrong?