unity本地存取

Posted All_Nighter

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unity本地存取相关的知识,希望对你有一定的参考价值。

using UnityEngine;
using System.Collections;

public class local_storage : MonoBehaviour {

    // Use this for initialization
    void Start () {
        //设定数据----不是代码
        // name: 小红 // 字符串
        // age: 12 // 整数 
        // sex: 1 // 性别
        // hight: 1.62 // float

        //存数据
        /*PlayerPrefs.SetString("name", "小红");
        PlayerPrefs.SetInt("age", 12);
        PlayerPrefs.SetInt("sex", 1);
        PlayerPrefs.SetFloat("hight", 1.62f);
        PlayerPrefs.Save();*/

        //取数据
        // Debug.Log(PlayerPrefs.GetString("name"));
        // Debug.Log(PlayerPrefs.GetInt("age"));
        // Debug.Log(PlayerPrefs.GetInt("sex"));
        // Debug.Log(PlayerPrefs.GetFloat("hight"));

        //查找删除
        if (PlayerPrefs.HasKey("name")) {
            Debug.Log("Haskey");//第一次输出这个
            PlayerPrefs.DeleteKey("name");
        }
        else {
            Debug.Log("ELSE NOT FOUND");//第二次输出这个(被第一次删除了,找不到了)
        }
    }
    
    // Update is called once per frame
    void Update () {
    
    }
}

 

以上是关于unity本地存取的主要内容,如果未能解决你的问题,请参考以下文章

Unity 中的存档系统(本地存档)

java大对象存取的简单实现的代码

Unity报错:Read only asset Packages/com.xxxxx.xxx.xxxx/Editor/VSCodeDiscovery.cs.IPGSD has no meta(代码片段

Unity报错:Read only asset Packages/com.xxxxx.xxx.xxxx/Editor/VSCodeDiscovery.cs.IPGSD has no meta(代码片段

Unity中获取Animator中动画片段的时长

根据图片的url地址下载图片到本地保存代码片段