Hey ThePhotons client need use onOperationResponse to get data,but i can,t find the cnds in photon plugin
here is unity example
public override void OnOperationResponse(OperationResponse operationResponse) {
base.OnOperationResponse(operationResponse); // important to call, to keep state up to date
switch (operationResponse.OperationCode) {
case OperationCode.Authenticate:
if (operationResponse.Parameters.ContainsKey(ParameterCode.Data)){
var data = (Dictionary<string, object>)operationResponse.Parameters[ParameterCode.Data];
}
break;
/*
...
*/
default:
break;
}
}