making it fire requires a whole lot of other work. I’ll write something for it if i have the time, for now get yourself familiar with rays and server security due to filtering enabled.
quick update: i was writing it today. I managed to accidentally press enter midway through and post it to scripting support.
I don’t often give out praise, however in this situation it is more than warranted. This is a really well laid out and thought through tutorial that goes through each aspect and hurdle that people are going to encounter if they try and develop their own system. One of the highest quality tutorials I have seen on the forum so far. Well done and I definitely look forward to any future releases you might make!
One question though: You use a few fairly complicated black-box modules (namely spring and velocity)
Is it possible that you can include a more in-depth explanation to their function, and if possible the mathematics behind them? I’m the type of person to take a deep dive into the background of stuff before I can plant my feet firmly in a subject, and this would be helpful!
I forgot to credit their creators, thank you for bringing it up. Neither of the used modules have that much complexity to talk about in my opinion. Velocity is mostly a glorified module provider with a bunch of useful functions, I didn’t play with It’s source that much, and the spring is just hookes’ law wrapped with a few settings and some protection against NaN numbers.
Looks good but I can’t for the life of me get the animation stuff working no matter what, the hierarchy is completely messed up even know i replicated how you did it.
How do you load animations for idle, reload, and others so quickly? I am loading my animations around the same way you are so how come my animations don’t load quickly enough compared to your Untitled FPS game? Since it doesn’t load quickly enough, players see ugly arms for a bit before the animation actually loads.
I know that you are tweening the viewmodel for the equip, I tried that too, and it seemed to work, but sometimes the idle animation loads fast and sometimes it doesn’t. How do games like arsenal load animations so quickly to the point where it doesn’t even look like they are using an animation for the equip or they somehow preload the animation before it is equipped.
these animations are just downloaded/cached at runtime, aka. when you equip, the “ugly arms” only appear the first time you equip unless you screwed something up
Well I don’t want to see the “ugly arms” at all because players will automatically equip/unequip and don’t equip multiple times. So how could I load the animation faster? or will i have to make some cframe tween madness?