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

Description

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

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { PlayerPrefs.SetString("Player Name", "Foobar"); } }