.BYTES 파일 확장자
Binary Text Asset Data File
| 개발사 | Unity Technologies |
| 인기도 |
4.0 | 30 투표 |
BYTES 파일이란 무엇인가요?
File used by Unity, a 3D game development application; contains binary data from the text asset (commonly using but not limited to the .TXT extension) file; loaded as a text asset and accessed through the bytes property; extension must be manually changed to BYTES.
추가 정보
An example of the BYTES extension in use would be changing a .JPEG extension and putting it in your "Resources" folder. Then using the following script:
//Load texture from disk
TextAsset bindata= Resources.Load("Texture") as TextAsset;
Texture2D tex = new Texture2D(1,1);
tex.LoadImage(bindata.bytes);
BYTES 파일을 열거나 참조하는 프로그램
Windows
Mac