Other than that, you don’t need the PlayerMesh variable on your child class, you have full access to it from ACharacter through GetMesh()
Lastly, what’s the reason behind not wanting to use blueprints? It can be very convenient for cases like this, especially when you probably want to see what your actor looks like without having to recompile every time you make a change.
A blueprint will also prevent issues caused by for example renaming the mesh asset or moving it around, since the reference will be kept track of and updated in such a case
I am still learning Unreal. Recently I’ve started working on new project with C++ only, but I can already see many disadvantages of that approach. Thank you for solution and tips, I guess I will eventually create some BPs based on cpp classes.