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

Description

Назначает значение для параметра с идентификатором key.

using UnityEngine;
using System.Collections;

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