- Declaration
static FCavrnusBinding UCavrnusBinding* BindUserVideoFrames(FCavrnusSpaceConnection SpaceConnection, const FCavrnusUser& User, FCavrnusUserVideoFrameEvent OnVideoFrameUpdateconst VideoFrameUpdateFunction& UpdateFrameCallback);
Delegates TypesOptions:
DECLARE_DYNAMIC_DELEGATE_OneParam(FCavrnusUserVideoFrameEvent, UTexture2D*, UserVideoFrame);
typedef TFunction<void(UTexture2D*)> VideoFrameUpdateFunction;
- Description
Triggers an event for every new frame of a user’s video stream. Note that this frame will sometimes be null if there is no stream.
...