数据持久化-PlayerPrefs

一、基础方法

1、介绍持久化

将内存中的数据存储到硬盘中。

2、PalyerPrefs是一个存储玩家数据的公共类。

3、存储相关

键是唯一的,即使是存储不同类型的。

4、读取相关

取值和其参数介绍:

第二个参数是用来赋予默认值的。并不会存储到硬盘中。

判断是否存在该键:

删除数据

练习题:

第一题 复制代码
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Player1 : MonoBehaviour
{
    public string name;
    public int age;
    public int atk;
    public int def;
    void SaveData()
    {
        PlayerPrefs.SetString("name", this.name);
        PlayerPrefs.SetInt("age", this.age);
        PlayerPrefs.SetInt("atk", this.atk);
        PlayerPrefs.SetInt("def", this.def);
    }

    void ReadData()
    {
        name = PlayerPrefs.GetString("name", "未知名称");
        age = PlayerPrefs.GetInt("age", 20);
        atk = PlayerPrefs.GetInt("atk", 1);
        def = PlayerPrefs.GetInt("def", 1);
        print($"玩家{name}({age}岁)目前攻击力:{age},防御力:{def}");
    }
    private void Start()
    {
        SaveData();
        ReadData();
    }
}

二、存储位置

1、不同平台位置:

windows:

Android:

IOS:

2、保证数据不重复

练习题

PlayerPrefs主要作用

相关推荐
Thomas游戏开发1 天前
博毅创为 Unity_0基础就业班
前端框架·unity3d·游戏开发
谷宇.2 天前
【Unity3D实例-功能-拔枪】角色拔枪(二)分割上身和下身
游戏·unity·c#·游戏程序·unity3d·游戏开发·游戏编程
谷宇.5 天前
【Unity3D实例-功能-移动】角色行走和奔跑的相互切换
游戏·unity·c#·unity3d·游戏开发·游戏编程
谷宇.15 天前
【Unity3D实例-功能-镜头】第三人称视觉
游戏·unity·unity3d·游戏开发·游戏编程·steam
Thomas游戏开发19 天前
Unity Root Motion 开发详解
前端框架·unity3d·游戏开发
evamango22 天前
《Unity Shader入门精要》七、基础纹理
unity3d
谷宇22 天前
【Unity3D实例-功能-移动】角色移动-通过WSAD(Rigidbody方式)
unity3d·游戏开发
谷宇23 天前
【Unity3D实例-功能-移动】角色移动-通过WSAD(Transform方式)
unity3d·游戏开发
evamango1 个月前
《Unity Shader入门精要》六、Unity 中的基础光照
unity3d