PlayerPrefs.SetFloat Manual     Reference     Scripting  
Scripting > Runtime Classes > PlayerPrefs
PlayerPrefs.SetFloat

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

Description

Sets the value of the preference identified by key.

JavaScripts
PlayerPrefs.SetFloat("Player Score", 10.0);

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Awake() {
PlayerPrefs.SetFloat("Player Score", 10.0F);
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Awake():
PlayerPrefs.SetFloat('Player Score', 10.0F)