Version: 2017.4
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

PlayerPrefs.SetFloat

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static method SetFloat(key: string, value: float): void;
public static void SetFloat(string key, float value);

Description

Sets the value of the preference identified by key.

          PlayerPrefs.SetFloat("Player Score", 10.0);
//This script sets the float up in the PlayerPrefs to be used elsewhere. Use GetFloat to return the settings.

using UnityEngine; using UnityEngine.SceneManagement;

public class Example : MonoBehaviour { void Start() { //Give the PlayerPrefs some values to send over PlayerPrefs.SetFloat("Health", 50.0F); }

void OnGUI() { //Create a button which loads the appropriate level when you press it if (GUI.Button(new Rect(100, 200, 200, 60), "Next Scene")) { SceneManager.LoadScene("Scene2"); } } }
no example available in JavaScript
no example available in C#