Start Coroutine by RPC?
The whole answer can be found below.
Please note: The Photon forum is closed permanently. After many dedicated years of service we have made the decision to retire our forum and switch to read-only: we've saved the best to last!
And we offer you support through these channels:
Try Our
Documentation
Please check if you can find an answer in our extensive documentation on PUN.
Join Us
on Discord
Meet and talk to our staff and the entire Photon-Community via Discord.
Read More on
Stack Overflow
Find more information on Stack Overflow (for Circle members only).
Start Coroutine by RPC?
steamcore
2016-11-26 22:25:53
Is it possible to start a coroutine the same way as a regular method in C# using RPC? Do I follow the same syntax?
Comments
Hi @steamcore,
Yes that should be possible using same syntax. Example:
public class ExampleMonoBehaviour: MonoBehaviour {
[PunRPC]
public void ExampleRPC(){
StartCoroutine("ExampleCoroutine");
}
IEnumerator ExampleCoroutine(){
yield return null;
}
}
Works perfect.
Back to top