unreal engine overlap events c 2b 2b code

Solutions on MaxInterview for unreal engine overlap events c 2b 2b code by the best coders in the world

showing results for - "unreal engine overlap events c 2b 2b code"
Elizabeth
19 May 2016
1public
2  ...
3
4  // declare overlap begin function
5	UFUNCTION()
6	void OnOverlapBegin(class UPrimitiveComponent* OverlappedComp, class AActor* OtherActor, class UPrimitiveComponent* OtherComp, int32 OtherBodyIndex, bool bFromSweep, const FHitResult& SweepResult);
7
8	// declare overlap end function
9	UFUNCTION()
10	void OnOverlapEnd(class UPrimitiveComponent* OverlappedComp, class AActor* OtherActor, class UPrimitiveComponent* OtherComp, int32 OtherBodyIndex);
11