I think you should make a manual. I did not find the videos to be very helpful in using this myself and in particular I had an issue that cost me a couple days of work hunting down the problem. At some point I noticed my project was no longer working on mobile or standalone. In editor and in new editor window everything worked just fine but every time I tried to play in standalone my character class was not working and there were no errors. The game just sat there floating in space. By process of elimination I finally tracked the problem down to your touch components so I set about figuring out why this was the case. I found out it was because my character was based on the Pawn class and not the Character class (it’s a simple ball object so I didn’t need all the functionality of Character). Again this worked completely fine in the editor, even your touch controls. But for whatever reason it broke when I tried in standalone and I have to say this took many frustrating hours to work out and was just plain mysterious. If you do ever make a manual – and I don’t believe your tutorial videos are a substitute for one – do put in there the fact that trying to use your components on a Pawn class will cause this issue. Thanks for the components. I’ll probably use it in many projects.