[Developers] Improve Consistency of Native_OnX
, BP_OnX
, and OnX
Naming Conventions
#50
Labels
Native_OnX
, BP_OnX
, and OnX
Naming Conventions
#50
As a Developer, I'd like it if there was more consistency and/or documentation around when methods in the framework are named
Native_OnX
,BP_OnX
, orOnX
so that I know what to expect when I call these methods and can adhere to the convention in newer code.Background Information
OnX
(e.g.,OnCharacterAdded
). This may no longer be necessary now that we have implemented the event emitter pattern for delegates, since the delegate properties now live in separate concrete UClasses.Native_OnX
(e.g.,Native_OnCharacterAdded
) is always used for the native implementation of an event, whileBP_OnX
(e.g.,BP_OnCharacterAdded
) is always used for aBlueprintImplementable
orBlueprintNative
event.Native_OnX
calls that then dispatch calls to theBP_OnX
variant.The text was updated successfully, but these errors were encountered: