# 다운받은 ISO 이미지 변환 hdiutil convert -format UDRW -o ~/desktop/ubuntu.img ~/desktop/ubuntu.iso # USB 확인 diskutil list # USB unmount diskutil unmountDisk /dev/disk # 부팅용 USB 만들기 sudo dd if=~/desktop/ubuntu.img of=/dev/disk bs=1m
[월:] 2018년 01월
PlayerPrefs를 통해 값 저장하고 불러오기
PlayerPrefs를 통해 간단하게 값을 영구저장하고 불러올수 있습니다. 윈도우용 앱을 만든 경우는 레지스트리에 값이 저장됩니다. 저장하기 : PlayerPrefs.SetInt(“score”, score); PlayerPrefs.SetInt 외에 PlayerPrefs.SetString도 있습니다. 불러오기 : score = PlayerPrefs.GetInt(“score”); PlayerPrefs.GetInt 외에 PlayerPrefs.GetString도 있습니다.