Exemple #1
0
        public bool SetActorLocationAndRotation(OpenTK.Vector3 newLocation, UnrealEngine.Runtime.Rotator newRotation, bool teleport)
        {
            HitResult sweepResult;

            return(SetActorLocationAndRotation(newLocation, newRotation, false, out sweepResult, teleport));
        }
Exemple #2
0
        public void SetActorRelativeRotation(UnrealEngine.Runtime.Rotator newRelativeRotation, bool teleport)
        {
            HitResult sweepResult;

            SetActorRelativeRotation(newRelativeRotation, false, out sweepResult, teleport);
        }
Exemple #3
0
        public void AddActorWorldRotation(UnrealEngine.Runtime.Rotator deltaRotation, bool teleport)
        {
            HitResult sweepResult;

            AddActorWorldRotation(deltaRotation, false, out sweepResult, teleport);
        }
Exemple #4
0
 extern private static void FVector_FromRotator(out Vector3 direction, Rotator rotator);
Exemple #5
0
        public void AddActorLocalRotation(UnrealEngine.Runtime.Rotator deltaRotation)
        {
            HitResult sweepResult;

            AddActorLocalRotation(deltaRotation, false, out sweepResult, false);
        }
Exemple #6
0
 extern private static void FMatrix_FromRotator(out Matrix4 rotationMatrix, Rotator rotator);
Exemple #7
0
 extern private static void FQuat_FromRotator(out Quaternion quat, Rotator rotator);
Exemple #8
0
 extern private static void FRotator_FromMatrix(out Rotator rotator, ref Matrix4 rotationMatrix);
Exemple #9
0
 extern private static void FRotator_FromQuat(out Rotator rotator, Quaternion quat);
Exemple #10
0
 extern private static void NativeToRotator(out Rotator result, Vector3 vec);