Search Unity

Unity document has wrong translation about PlayrPref.save()

Discussion in 'Documentation' started by zenspirit, Oct 18, 2018.

  1. zenspirit

    zenspirit

    Joined:
    Nov 29, 2013
    Posts:
    1
    English text says "not recommended" but Korean dasy "recommended", which is quiet opposite to context.

    Description

    수정된 모든 preferences를 디스크에 씁니다.

    기본설정으로 유니티는 Application Quit시에 preference를 디스크에 씁니다. 게임이 갑자기 종료되는 경우를 위해서, 게임의 적절한 'checkpoints'에서 PlayerPrefs를 저장하고 싶을 것입니다. 이 함수는 잠재적으로 발생하는 작은 랙(lack) 같은 현상을 디스크에 저장하기 때문에, 실제 게임 플레이중에 함수를 호출 할 것을 권장합니다. This function will write to disk potentially causing a small hiccup, therefore it is not recommended to call during actual gameplay.

    Note: There is no need to call this function manually inside OnApplicationQuit().

    Note: On Windows Store Apps and Windows Phone 8.1 preferences are saved during application suspend, because there's no application quit event.