1
我想檢測我的遊戲是否處於試玩模式,並讓用戶前往市場購買。使用XNA遊戲進入試用模式市場
我做了一件HERE
的代碼,他們提供的代碼samlpe不起作用雖然
if (Guide.IsTrialMode)
{
Guide.ShowMarketplace(signedInGamer.PlayerIndex);
}
它給The name SignedInGamer doesn't exist in the current context
我試圖用它玩一點點修改它是:
if (Guide.IsTrialMode)
{
//Guide.ShowMarketplace(signedInGamer.PlayerIndex);
Guide.ShowMarketplace(PlayerIndex.One);
}
它的工作š但現在在模擬器上它關係到市場,並給出:
我不知道這是因爲遊戲是在調試模式,尚未公佈的,或者說是因爲修改我的製作?!
哦,是的,對不起,我的壞:) – SKandeel 2012-01-11 18:58:12