Byn.Unity.Examples.MinimalCall.Update C# (CSharp) Method

Update() private method

Called by Unitys update loop. Will refresh the state of the call, sync the events with unity and trigger the event callbacks below.
private Update ( ) : void
return void
        private void Update()
        {
            if (receiver != null)
                receiver.Update();

            if (sender != null)
                sender.Update();
        }