Inheritance of UPositionReport

Inside of UPositionReport there is reference to another component.
"void UPositionReport::TickComponent " seems to refer to ‘TickComponent’.

Additionally, inside of this component is “Super::TickComponent”, which is the first time we have seen a call to another class from within a class. This makes me think further that this is inheriting from “TickComponent”.

However, if we look inside of “void UPositionReport::BeginPlay” we see “Super::BeginPlay”.

The reference to “Super” in these two places seem to mean that “Super” itself is a way to reference a larger, higher up, component.

Privacy & Terms