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

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

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

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

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