Exemple #1
0
        private static void OnActorGetActorEyesViewPoint(IntPtr address, out FVector OutLocation, out FRotator OutRotation)
        {
            try
            {
                UObject obj = GCHelper.Find(address);
                obj.GetActorEyesViewPointInternal(out OutLocation, out OutRotation);
            }
            catch (Exception e)
            {
                OutLocation = default(FVector);
                OutRotation = default(FRotator);

                LogCallbackException(nameof(OnActorGetActorEyesViewPoint), e);
            }
        }