Instancier un projet Three.js
Installation de three.js
# Nous l'avons déjà fait
npm install three
// script.js
import * as THREE from 'three';
Console.log
console.log(THREE)
Cette variable contient toutes les classes de Three.js, avec des propriétés et des méthodes.
Documentation : https://threejs.org/docs/index.html#manual/en/introduction/Creating-a-scene (opens in a new tab)