Witajcie,
próbuje sił z THREE.js, ale już na początku coś nie działa
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="main.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r126/three.js"></script>
<title>Document</title>
</head>
<body>
</body>
</html>
oraz main.js
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera (24, window.innerWidth/window.innerHeight, 0.1, 1000);
const renderer = new THREE.WebGLRenderer();
renderer.setSize(window.innerWidth, window.innerHeight);
document.body.appendChild(renderer.domElement);