Questions tagged [file-format]
The structure of data files and how they are stored.
108 questions
0 votes
1 answer
167 views
Open model file format that supports skeletal animation
I'm looking for a file format to store and load 3D models with skeletal animation data, which is free to use and distribute without licence restrictions. I've evaluated formats like glTF and Collada (....
2 votes
2 answers
96 views
Moving "theme" file to a different folder - is it possible to update the resource paths within the "theme"?
Assume the following: One theme is created via the Godot Editor (version 3.5) and saved under res://themes/my-theme.theme. Due to changes in the project's file ...
1 vote
0 answers
3k views
RGBA32 and ARGB32: what are they? what's the difference?
Unity has both TextureFormat.ARGB32 and TextureFormat.RGBA32.The document says it's 8bit each channel in [0..1] range. But what are these formats exactly? 8bit is usually [0..255]. Do they just ...
0 votes
1 answer
769 views
How would I save texture along with other data in binary file in Unity?
So I have a save method that can save data to a binary file and another function that saves just the texture. I would like to save both of them in a same file. I guess I would need to create a ...
0 votes
0 answers
130 views
file format and animation in unity
I've been following this awesome course from udemy for unity, and it's content are in depth. But, on Lesson 12, the author mentions a .unity package which is absent ...
2 votes
1 answer
104 views
Tilemaps are loading differently each time
Tilemap data is stored in a 2D array. It is saved using the following code ...
1 vote
0 answers
225 views
How do I make Unity use UTF-8 and LF characters for new script files? [duplicate]
By default, when you make a new script in Unity on Windows, it will use UTF-8 with BOM and CRLF. How do I change this to be regular UTF-8 without BOM, and LF (Unix-style)?
4 votes
2 answers
124 views
Solutions for maintaining importers and exporters when chaning file formats
After having a very short discussion with Delix on youtube (see link below) on custom data storage formats, I started thinking. What are some useful ways of maintaining importers / exporters when you ...