mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-25 05:40:21 -04:00
0.6.5b1
This commit is contained in:
parent
05fd0588e8
commit
3b7b88be57
@ -15,7 +15,7 @@ It is the continuation of my Unity Importer script for 3ds Max, and comprises al
|
||||
* **TextAsset**
|
||||
* **Shader**
|
||||
* **MonoBehaviour**
|
||||
* Support convert almost all textures to bmp png or jpeg
|
||||
* Support convert almost all textures to bmp, png or jpeg
|
||||
* Support convert FSB file to wav
|
||||
* Export to FBX, with complete hierarchy, transformations, materials and textures. Geometry is exported with normals, tangents, UV coordinates, vertex colors and deformers. Skeleton nodes can be exported either as bones or dummy deformers..
|
||||
* Real-time preview window for the above-mentioned assets
|
||||
@ -36,7 +36,7 @@ Requirements:
|
||||
| Item | Action
|
||||
| :---------------------------- | :----------------------------
|
||||
| File -> Load file/folder | Open Assetfiles and load their assets. Load file can also decompress and load bundle files straight into memory
|
||||
| File -> Extract bundle/folder | Extract Assetfiles from bundle files compressed with lzma or l4z
|
||||
| File -> Extract bundle/folder | Extract Assetfiles from bundle files compressed with lzma or lz4
|
||||
| Scene Hierarchy search box | Search nodes using * and ? wildcards. Press Enter to loop through results or Ctrl+Enter to select all matching nodes
|
||||
| Asset List filter box | Enter a keyword to filter the list of available assets; wildcards are added automatically
|
||||
| Diagnostics | press Ctrl+Alt+D to bring up a hidden menu and a new list
|
||||
|
@ -422,7 +422,7 @@ namespace Unity_Studio
|
||||
a_Stream.Position += m_ShapeVertices_size * 40; //vertex positions, normals, tangents & uint index
|
||||
|
||||
int shapes_size = a_Stream.ReadInt32();
|
||||
a_Stream.Position += shapes_size * 10; //uint firstVertex, vertexCount; bool hasNormals, hasTangents
|
||||
a_Stream.Position += shapes_size * 12; //uint firstVertex, vertexCount; bool hasNormals, hasTangents
|
||||
|
||||
int channels_size = a_Stream.ReadInt32();
|
||||
for (int c = 0; c < channels_size; c++)
|
||||
|
Loading…
Reference in New Issue
Block a user