Zemanzo / web-marbles

Aims to recreate Marble Racing from the ground up, as a fully web based game
https://playmarbl.es/
GNU General Public License v3.0
23 stars 12 forks source link

Import only necessary modules from three.js #257

Closed Zemanzo closed 5 years ago

Zemanzo commented 5 years ago

Description No more import * as THREE from "three";, because we need tree shaking. This is now possible since #2 has been solved (since #256)

Minimum Acceptance Criteria All instances where three.js is imported, only the modules used in that file are imported.