Generic approach to billboards #1102
-
Hi all, Just getting started learning glTF 2.0. Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @tantilla — While there are a number of tools that do features similar to billboards (model-viewer comes to mind: https://modelviewer.dev/examples/annotations/index.html) based on glTF, I think you're correct that there is no standard approach to representing that data in a glTF file. I'm not aware of a standard way to transfer billboard data in other file formats either, unfortunately. glTF Transform could certainly be used to add billboards to files with a custom extension, or to optimize files already using a custom extension, but the work of implementing the billboard support in whatever renderer you're using would remain. It might be possible to get more answers in the Khronos Slack server, Discord server, or perhaps the main glTF Github repository. |
Beta Was this translation helpful? Give feedback.
-
Thanks for your suggestions @donmccurdy. |
Beta Was this translation helpful? Give feedback.
Hi @tantilla — While there are a number of tools that do features similar to billboards (model-viewer comes to mind: https://modelviewer.dev/examples/annotations/index.html) based on glTF, I think you're correct that there is no standard approach to representing that data in a glTF file. I'm not aware of a standard way to transfer billboard data in other file formats either, unfortunately.
glTF Transform could certainly be used to add billboards to files with a custom extension, or to optimize files already using a custom extension, but the work of implementing the billboard support in whatever renderer you're using would remain.
It might be possible to get more answers in the Khronos Sla…