Where are nodes of MyCharacter BluePrint?

I have a default FPS project where I have MyCharacter blueprint.It has FPS camera but blueprint is empty from nodes in its graph.Why?

i never used fps template but i suspect character just got camera component and moment might be in playercontroller

I suspect movement is coded in C++

did you selected c++ template?

Yeah.I use C++ based project.

Hey SasMaster,

In a C++ Project, MyCharacter is derived from [YourProjectName]Character.h, and all basic nodes you would normally see in a Blueprint project are in [YourProjectName]Character.cpp. You can make adjustments there, or you can create a new BP from Character class and add nodes you’re looking for there.

Hope that helps!