我在Unity 4.6中使用PlayerPrefs时遇到错误。我不断收到错误消息“当前上下文中不存在PlayerPrefs”。当我将鼠标指针悬停在PlayerPrefs语句上时,我在MonoDevelop中收到相同的消息。任何建议都表示赞赏。
答案 0 :(得分:0)
也许您不在一个真正的上下文中,这意味着您不在从monoBehavious
扩展的类中
您所需的代码应如下所示:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class KiaStart : MonoBehaviour
{
// you can use PlayerPrefs here!...
void Start()
{
}
void Update()
{
}
}