티스토리 뷰
반응형
#IniParser를 어셋 스토어에서 받는다.
https://assetstore.unity.com/packages/tools/advanced-ini-parser-23706
StreamingAssets폴더에 config.ini 파일을 만든다.
#config.ini
[Section]
Width=1920
Height=1080
ItemCode=A
#Bihind Code
INIParser ipParser = new INIParser();
ipParser.Open(path);
var width = ipParser.ReadValue("Section", "Width",0);
var height = ipParser.ReadValue("Section", "Height", 0);
Screen.SetResolution(width, height, true);
#그러면 외부에서 ini 파일을 변경하여 해상도를 변경 할 수 있다.
#c# #ini #config #settings #setting #컨피그 #유니티 #unity
반응형
'유니티(unity)' 카테고리의 다른 글
[unity/c#] RectTransform(2d개발) width or height 값 변경하기 (0) | 2022.02.15 |
---|---|
[unity/c#]unity에서 c# 라이브러리 사용하기 (0) | 2022.02.15 |
[unity/c#] 유니티에서 강제로 해상도 지정하기 (0) | 2022.01.20 |
[unity/android] 유니티에서 안드로이드 권한(permission) 허용(팝업/수락) (2) | 2021.12.09 |
[unity/beacon] 유니티에서 비콘 사용하기(이벤트 핸들러방식 소스코드 source code) (2) | 2021.12.09 |
댓글
반응형