Thank you. I completed your Three.js tutorial and i just wanna tell you how grateful i am that you made this great tutorial free. I will notify you when i complete my site.
@SuboptimalEng2 жыл бұрын
Thanks! I'll be on the lookout for your website.
@hengyang2328 Жыл бұрын
Thank you so much for this tutorial! I was lost for days trying to figure out how to animate my camera when I clicked on a div. Animating my camera to lookAt() a target.position and then passing in a tween to move my camera, as a prop to my react App component, allowed me to get the desired effect I wanted! Thank you, very much!
@SuboptimalEng Жыл бұрын
Glad to hear the video helped!
@AndersonMancini2 жыл бұрын
Great tutorial 👏🏻. I will recommend your channel for those who ask me about animation. Congrats.
@SuboptimalEng2 жыл бұрын
Thanks Anderson, I'm glad you found the video helpful!
@coezbay2 жыл бұрын
Awesome! Was the best intro for Tween.js!
@cristianramos73432 жыл бұрын
Cool tutorial thanks. I'm a developer but sometimes when you need a quick start a short video is better than just reading the docs :)
@lucutes29362 жыл бұрын
how can i group animations?
@lih33918 ай бұрын
Is there any way to do this without the help of an external library like tween.js?
@ansible93402 жыл бұрын
Hey great video, but @2:55, is the cube floating? If not, why isn't it clipping when rotating?
@SuboptimalEng2 жыл бұрын
Good question! I move the ground mesh down in the Y direction to make sure that the box does not get clipped when it rotates. You can see the exact code on GitHub.
@vivekascoder2 жыл бұрын
Aww, I also love Iosevka, it's just the best
@SuboptimalEng2 жыл бұрын
Glad I found it, such a clean font. Saves a lot of horizontal space too 👏
@snudge7632 жыл бұрын
im getting this error: "TWEEN.Tween is not a consturctor"
@dabluebowser8496Ай бұрын
Maybe you didn't install the tween.js, the default included in three.js is no longer supported as I know
@FreQ35Hz2 жыл бұрын
where to learn this three.js ? any suggestion or smth i reallly want to learn this three.js
@SuboptimalEng2 жыл бұрын
Discover Three.js is a good website to get started.
@FreQ35Hz2 жыл бұрын
@@SuboptimalEng thanks a lot , I appreciate it
@jack_wyus20132 жыл бұрын
Thanks bro :D
@Ivan-dt9mc2 жыл бұрын
Hello what js library do you recommend for a beginner trying to make 2d/3d games in javascript? Nice Video btw !!
@SuboptimalEng2 жыл бұрын
Thanks Ivan! For 2D game dev, you can write simple JS in a HTML canvas or use something like PixiJS. For 3D game dev you can try a JS game engine like Babylon.js or PlayCanvas.
@Ivan-dt9mc2 жыл бұрын
@@SuboptimalEng alright thanks:))
@Ivan-dt9mc2 жыл бұрын
@@SuboptimalEng for 3d game dev, isn't three.js more popular?
@SuboptimalEng2 жыл бұрын
@@Ivan-dt9mc Three.js helps you render 3D objects in your canvas element, but game development is much more than that. Babylon.js and Play Canvas act like Unity or Unreal engine but with JavaScript.