Functions
All functions
Ways of Calling
local my_pos = CONTROLLER:K2_GetActorLocation()local my_pos = CONTROLLER.K2_GetActorLocation(CONTROLLER)Parameters
Now what if the function has out parameters?
local returnValue,screenPos = CONTROLLER:ProjectWorldLocationToScreen(pos, {})
-- returnValue = the return value of the function (boolean)
-- screenPos = an out paramter called ScreenLocation (FVector2D)Last updated