.bytes Fil
Filtyp Binary Text Asset Data File
Utvecklare | Unity Technologies |
Kategori | Utvecklarfiler |
Format | Binary |
.BYTES alternativnummer
Fil som används av Unity, en 3D-spelutvecklingsapplikation; innehåller binär data från texttillgången (vanligen men inte begränsad till filen .TXT extension); laddad som en text tillgång och nås via bytes egendom; förlängningen måste bytas manuellt till BYTES.
Ett exempel på BYTES-tillägget som används skulle ändra en .JPEG -tillägg och lägga den i mappen "Resurser". Använd sedan följande skript:
// Ladda text från diskTextAsset bindata = Resources.Load (Texture) som TextAsset; Texture2D tex = new Texture2D (1,1); tex.LoadImage (bindata.bytes );