로딩
티스토리 데이터 처리 중입니다.

유니티 C# 로컬 데이터 저장, 불러오기 PlayerPrefs 간단 사용법

 유니티 C# 로컬 데이터 저장, 불러오기 PlayerPrefs 간단 사용법

데이터 저장 using System.Collections; using System.Collections.Generic; using UnityEngine; public class Example : MonoBehaviour { private void SetValue() { PlayerPrefs.SetFloat("Apple", 1.0f); PlayerPrefs.SetInt("Orange", 1); PlayerPrefs.SetString("Banana", "Banana"); } } 데이터 불러오기 using System.Collections; using System.Collections.Generic; using UnityEngine; public class Example : MonoBehaviour { pri.....