Enregistrer Bool à l'aide de PlayerPrefs

PlayerPrefs.SetInt("foo", foo?1:0);
foo = PlayerPrefs.GetInt("foo")==1?true:false;
Ultrabooba