1.what is diffrent between
void AMyActor::CalledFromCpp_Implementation() and
void AMyActor::CalledFromCpp().
i can’t understand purpose of _implementation()
if(world)
why do i have to test of validity of world?
i need to know what is world is and role in unreal.
That means, by calling your function in code you fire an event. You then can use a blueprint node to do further things when the event is fired. If you don’t use the blueprint node the function is just called like any other function, so the code that’s in the function is the default code that can be overwritten by your blueprints.