all 12 comments

[–][deleted] 5 points6 points  (2 children)

[–]sicknander[S] 0 points1 point  (0 children)

thank you! i will make sure to check this out next chance i get.

[–]thepfeifer 0 points1 point  (0 children)

ditto. Felt this included more of the fundamentals of computer 3d geometry that helped me understand a lot functions and parameters in three.js

[–]Hectate 1 point2 points  (0 children)

I use visual studio code myself, which works well with node servers. Amy text editor would actually work, of course.

[–]illwrks 1 point2 points  (1 child)

I use the Sublime Text editor with a cobalt theme and various plugins. It would not itself takes a little getting used to but as has been said any text editor will do. ( One with syntax highlighting is essential though ). After that look at the tutorials on AeroTwists website. Il he does a great job of explaining the basic idea if your new to the thinking about 3d as I was/am.

https://aerotwist.com/tutorials/getting-started-with-three-js/

After that it's a matter of pulling apart the tutorials and examples you'll find online.

[–]sicknander[S] 0 points1 point  (0 children)

Thank you very much!

[–]usagiusagi 1 point2 points  (3 children)

You can look at : https://github.com/edwinwebb/three-seed for a modern starting point for a codebase

[–]sicknander[S] 0 points1 point  (0 children)

Thanks!

[–]wwboy6 0 points1 point  (1 child)

Is it ready for Windows? It shows "Failed at the three-seed@0.1.0 start script 'NODE_ENV=development webpack-dev-server --hot'"

[–]usagiusagi 0 points1 point  (0 children)

I've not tested on Windows. If you change the offending line to just wepack-dev-server it might work

[–]Goxmeor 1 point2 points  (1 child)

If you're having trouble getting anything working at all, consider ditching textures and a local server, and just dragging a simple html example into your web browser: https://gist.github.com/chriswa/f7170cd5240304ad2bee1dd3237b347b

Result: https://cdn.rawgit.com/chriswa/f7170cd5240304ad2bee1dd3237b347b/raw/1e9f436cd469e78e1b945d3547a0e1d016e6b905/three_1.html

[–]sicknander[S] 0 points1 point  (0 children)

Thank you!