Something like a Connection Interrupted message?
Comments
-
You could track if you got updates from individual players. If there are none, you can assume the client is inactive.0
-
How would I do that?0
-
In OnPhotonSerializeView (e.g.) you can store the time when you received an update. Simply store Time.time or something.
In Update() you can check this value against the current time.0