Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

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

PlayerPrefs.SetFloat

static function SetFloat(key: string, value: float): void;
static void SetFloat(string key, float value);
static def SetFloat(key as string, value as float) as void

Description

Sets the value of the preference identified by key.

	PlayerPrefs.SetFloat("Player Score", 10.0);
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void Example() {
        PlayerPrefs.SetFloat("Player Score", 10.0F);
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def Example() as void:
		PlayerPrefs.SetFloat('Player Score', 10.0F)