update 15nov.24 to link a 3D object from spline,
so can it be possible to link into a ZIM file the way rive.app link can be used to an object, but now to a 3D object?
look to this video how it is simple when it is linked, afterward extra changes can be seen into the full project with multiple objects
(so not anymore gltf exporting needed when it is linked)
so there is a big update
can an api help to use it in spline?
https://spline.design/android#native-3d-embeds
docs https://docs.spline.design/doc/exporting-as-code/docDdDWmkQri
as from https://docs.spline.design/doc/exporting-as-code/docDdDWmkQri
import SplineLoader from '@splinetool/loader';
// Instantiate a loader
const loader = new SplineLoader();
// Load a .splinecode file
loader.load(
// path to the .splinecode file, either from the Spline servers or local
'https://prod.spline.design/2qM3cW5Cx15m3cJ7/scene.splinecode',
// called when the resource is loaded
(splineScene) => {
scene.add(splineScene);
},
null,
// called when loading has errors
(error) => {
console.log('An error happened');
}
);
thanks to make it possible as rive