how do i import the online 3d model like obj,dae or gltf from webserver into the godot?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By hester

hello everyone ,i have a question about godot. how do i import the online 3d model like obj,dae or gltf from webserver into the godot?i use the HTTPRequest to request the online obj model url,i can get the content of the obj file by body.get_string_from_utf8(),but i don’t know how to change this to mesh?thanks

:bust_in_silhouette: Reply From: Calinou

Godot doesn’t support loading models at run-time, but you can use an OBJ loader written in GDScript to achieve this.

That said, Collada and glTF don’t appear to have GDScript loaders available yet.

ok,thansk :slight_smile:

hester | 2020-05-27 09:21