用户看完奖励视频广告后,我想给用户 3 条额外的生命,让用户以相同的分数从玩家死亡的地方继续游戏。
我已经能够添加额外的生命代码,但无法获得相同的分数。
这是评分脚本:
public int playerScore = 0;
if (!isDead && collision.tag == "ScoreChecker") {
gameManager.AddToScore();
}
public void AddToScore()
{
playerScore++;
if (playerScore > PlayerPrefs.GetInt("HighScore",0))
{
PlayerPrefs.SetInt("HighScore", playerScore);
Debug.Log("Highscore");
}
Debug.Log("player score" + playerScore);
}
这是额外生命奖励脚本:
public void ReceiveReward()
{
totalLives = 3;
UIManager.instance.UpdateLivesIcons();
UIManager.instance.RewardPanel.SetActive(false);
}
我已经能够奖励额外的生命,但不知道如何让用户在玩家死亡时以相同的分数继续。