If you look at the start of the .atlas
file in a hex editor:
如果您在十六进制编辑器中查看“.atlas”文件的开头:
Loading Image
EF BB BF
is a "byte order mark" (BOM). It is used to indicate the file uses a UTF-8 encoding. Spine does not expect a BOM and so you get an invisible character at the beginning of the first line. The first line is the first image file name, so then Spine can't find that image.
EF BB BF
是“字节顺序标记”(BOM)。 它用于指示文件使用 UTF-8 编码。 Spine 不需要 BOM,因此您在第一行的开头会看到一个不可见的字符。 第一行是第一个图像文件名,所以 Spine 找不到那个图像。
You should save your .atlas
file without a BOM. Do you know how it got there?
您应该保存没有 BOM 的 .atlas
文件。 你知道它是怎么来的吗?