Archive 17/01/2023.

Cannot launch + Converting .fbx to .ani

NoobBeggar

I’m not a Urho3d guy; I just need to convert files. I have no idea what I’m doing, but it would be helpful to have a one-on-one convo with someone who knows how to use Urho3d.

I want to export .fbx to .ani according to this tutorial:
http://teamfriesen.com/blog/2013/09/07/finally.html

To launch Urho3D, I go to the bin folder and click the “Editor” batch file. I get the message:
“Windows cannot find… Urho3D-1.7.1\bin\Urho3DPlayer_D”

Apologies for being clueless. I wish you guys had a Discord; It would be easier to chat in real-time.

1vanK

AssetImporter is ugly and incomplete. You can use Blender plugin for convert fbx files

https://discourse.urho3d.io/t/exporting-materials-from-blender-2-83-to-urho3d/5845

NoobBeggar

I’m modding a game that only takes primitive/obsolete animation types. I can “get around” this problem via the .ani format, thanks to some programming work done by the community.

Urho3d is the only software I found that seems to convert .fbx to .ani.

1vanK

Urho3d uses own custom file formats (including .ani). Are you sure that your game is on the Urho3D engine?

NoobBeggar

The game is Carnivores: Dinosaur Hunter. I don’t know what engine it uses, but the community editor allows modifications with the .ani animation type. Here is an example of the .ani files I’m working with:

JTippetts1

.ani isn’t a standard format. It is highly unlikely that the .ani format you need matches Urho3D’s .ani format.

NoobBeggar

Well there’s gotta be a way to find out.

If you can, please describe the function of a Urho3d .ani file. Is it a fully animated model, or animation information for an existing model? Does it contains mesh/skeleton information, or only vertex information? How about textures?

1vanK
SirNate0

The Urho3D .ani files are just the animation information, not the textures and vertex data. In your words, it is

and the link @1vanK provided describes it in greater detail.

NoobBeggar

Sounds like the same kind of .ani I’m working with. Fingers crossed.

Eugene

This file doesn’t start with UANI magic word, so it’s not the same format

NoobBeggar

Thank you! That saves me a lot of time.
How did you view the file source code?

SirNate0

If you open the file in a hex editor you will see that the first 4 bites of the file you provided are “0C 00 00 00”, which are not representable in ASCII. If you instead open one of Urho’s .ani files you will see that the first four bytes are “55 41 4E 49” which correspond to ASCII “UANI”, the byte[4] Identifier "UANI" from the documentation. Hence your file is not an Urho .ani file.

Technically, you can probably get away with a regular plain text editor to view it, as it will probably just skip the non-representable characters and still show the good ones, so if it does start with UANI it should still look like that in a text editor. For example:
image