aframe doesn't see embed .gltf scene inside 'a-gltf-model' -- 404 Not found. (through the node.js). But if i put src into the 'a-emity' -- scene is on the page somewhere on rainbow with width/height 0/0. Position doesn't help. Starter scene (inline) is fine.
So, i have two files in root, first is 'index.js':
var express = require('express');
var app = express();
var path = require("path");
app.get('/', function (req, res) {
res.sendFile(path.join('C:/web/index.html'));
});
app.listen(3000, function () {
console.log('Example app listening on port 3000!');
});
And, here is content of 'index.html':
<!DOCTYPE html>
<html>
<head>
<title>test aframe scene</title>
<script src="https://aframe.io/releases/0.8.0/aframe.min.js"></script>
</head>
<body>
<a-scene>
<a-gltf-model src="scene/archilogic/export.gltf"></a-gltf-model>
</a-scene>
</body>
</html>
p.s. sry, i'm just in the beginning, this is test quest, i was working with Blender before. Original scene here