Hello everyone, my teacher told me to implement a character using scripts and I tried to do it by watching tutorials on YouTube but all the videos I saw use blueprints and I can’t use blueprint, can anyone help me with this?
the most direct suggestion would be to try creating a project selecting C++, which will give you the Character template in C++ form
if you are interested in a tutorial through like youtube then be sure to add “C++” in your searches. this might also be an example where you want to search Google, and use the Youtube videos that show up as results.
though keep in mind that in most cases you will be using blueprints at some point. even for objects that are “100%” defined in C++ as spawning a raw C++ Object (that derives from Actor) into a level will create a fake Blueprint wrapper around it.
and instantiating in Editor is usually cleaner to do with a blueprint, though the exception to this is instantiating in C++ to avoid Runtime-Resolved-Hard-References you want to instantiate raw C++ objects.