/
Cavrnus-CVT Local Pawn Blueprint Setup

Cavrnus-CVT Local Pawn Blueprint Setup

Continuing with Event Dispatch pattern, we’ll be adding several to the BP_BasePawn to handle broadcasting input events to allow other components to subscribe and consume these inputs.

CVT BP_BasePawn Blueprint Location

→ CollaborativeViewer/Blueprints/Pawn/BP_BasePawn

 

image-20240826-234341.png
Create Cavrnus_LaserTargetSpawned
image-20240826-234354.png
Add SpawnLocation Transform Input

 

image-20240826-235852.png
Create Cavrnus_PitchInput
image-20240826-235859.png
Add Value Boolean Input

 

 

image-20240826-235914.png
Create Cavrnus_RollInput

 

image-20240826-235920.png
Add Value Boolean Input

 

image-20240826-235950.png
Create Cavrnus_YawInput

 

image-20240826-235956.png
Add Value Boolean Input

 

 

image-20240827-000015.png
Create Cavrnus_PushPullInput

 

image-20240827-000023.png
Add Value Float Input

 

 

image-20240827-000044.png
Create Cavrnus_MouseWheelAxis

 

 

image-20240827-000052.png
Add Value Float Input

 

 

image-20240827-000101.png
Create Cavrnus_MenuToggled

 

image-20240827-000106.png
No inputs are needed

 

Connect Event Dispatchers to EnhancedInputActions.

This logic block can live anywhere in BP_BasePawn Event Graph. Again, these dispatchers serve to broadcast Input information to other components that may need them.

image-20240827-000125.png

The Local Pawn blueprint is now setup and subsequently all of the children pawns that derive from it!

Related content