I have recently been experimenting with the three.js library in Notepad+ and Chrome, but now I want to transition to using it within NetBeans IDE.
My attempt to import it into NetBeans by adding
<script type="text/javascript" src="js/three.js"></script>
has not worked as NetBeans does not recognize the constructor.
An example of this issue is when I try to use:
new THREE....();
Can anyone shed light on why this might be happening and provide guidance on how to resolve it?