petrbroz / svf-utils

Utilities for working with the SVF file format used by Autodesk Platform Services.
https://petrbroz.github.io/svf-utils/
MIT License
123 stars 53 forks source link

fusion360 animation support #36

Open wallabyway opened 3 years ago

wallabyway commented 3 years ago

Take the animation.json file from Forge Fusion360 svf files, and convert it into glTF animation nodes.

Here's an example http://assemblyinstructionviewer.steelcase.com/Viewer/AssemblyDirectionViewer?AssemblyDirectionID=14667

petrbroz commented 2 years ago

I started working on an initial support for SVF animations: https://github.com/petrbroz/forge-convert-utils/tree/feature/animations. There are a couple of issues we'll need to address before the animations can be properly supported:

The last one is especially problematic. We would have to either (a) bake the logical hierarchy into the glTF manifest, or (b) read the logical hierarchy during the conversion, and apply the same animation to all descendants of the given dbID.

petrbroz commented 2 years ago

I started working on an initial support for SVF animations: https://github.com/petrbroz/forge-convert-utils/tree/feature/animations. There are a couple of issues we'll need to address before the animations can be properly supported:

The last one is especially problematic. We would have to either (a) bake the logical hierarchy into the glTF manifest, or (b) read the logical hierarchy during the conversion, and apply the same animation to all descendants of the given dbID.