当触发事件时,我们正在使用 ExitGames Photon Realtime 引擎接收此回调
customEventAction(int playerNr,
nByte eventCode,
const ExitGames::Common::Object& eventContent)
如果对象是一个字符串,我们使用这段代码来提取它
ExitGames::Common::JString str =
ExitGames::Common::ValueObject<ExitGames::Common::JString>(eventContent).getDataCopy();
但是,被发送的对象是字典。它是使用 BroadcastEvent 从服务器发送的。
我们如何从中获取数据?
我们已经尝试过了,但它没有任何意义:
ExitGames::Common::Dictionary<byte,ExitGames::Common::Object> pdic
= ExitGames::Common::ValueObject<ExitGames::Common::Dictionary<byte,ExitGames::Common::Object>>(eventContent).getDataCopy();
我找到了从哈希表中获取数据的代码,但这也不起作用。
谢谢
肖恩