I included four .js libraries in my html file as below:
<script type="text/javascript" src="js/three.min.js" />
<script type="text/javascript" src="js/stats.min.js" />
<script type="text/javascript" src="js/TrackballControls.js" />
<script type="text/javascript" src="js/TubeGeometry.js" />
But when I executed it on Safari, it messaged that:
'can't find Variable THREE'
which is in three.min.js
.
Then I noticed that actually only stats.min.js
has been loaded. Can anybody tell me why please? Many thanks in advance!