Show / Hide Table of Contents

Class MagicLeapARPinFunctionLibrary

Direct API interface for the Magic Leap Persistent AR Pin tracker system.

Inheritance
System.Object
UObject
BlueprintFunctionLibrary
MagicLeapARPinFunctionLibrary
Inherited Members
UObject.TransientPackage
UObject.CastTo<T>(UObject)
UObject.CastTo(UObject, Type)
UObject.RemoveObject(UObject)
UObject.MakeObjectArrayField<T>(NativeArray*)
UObject.NotImplemented<T>()
UObject.Construct()
UObject.GetHashCode()
UObject.GetName()
UObject.ToString()
UObject.Name
UObject._None
UObject.None
UObject.ObjPointer
UObject.LoadObjectFromClass(Class, UObject, String, String, LoadFlags, PackageMap, Boolean)
UObject.LoadClass(Class, UObject, String, String, LoadFlags, PackageMap)
UObject.GetPropertyFor<T>(Name)
UObject.ExecuteUbergraph
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: UE4.MagicLeap
Assembly: UE4DotNet.dll
Syntax
public class MagicLeapARPinFunctionLibrary : BlueprintFunctionLibrary

Properties

| Improve this Doc View Source

DefaultObject

Get UE4 Default Object for this Class

Declaration
public static MagicLeapARPinFunctionLibrary DefaultObject { get; }
Property Value
Type Description
MagicLeapARPinFunctionLibrary
| Improve this Doc View Source

StaticClass

Get UE4 Class

Declaration
public static Class StaticClass { get; }
Property Value
Type Description
Class

Methods

| Improve this Doc View Source

GetARPinPositionAndOrientation(FGuid)

Declaration
public static (Vector, Rotator, bool, bool) GetARPinPositionAndOrientation(FGuid PinID)
Parameters
Type Name Description
FGuid PinID
Returns
Type Description
System.ValueTuple<Vector, Rotator, System.Boolean, System.Boolean>
| Improve this Doc View Source

GetAvailableARPins(Int32)

Returns all the AR Pins currently available.

Declaration
public static (IReadOnlyCollection<FGuid>, EPassableWorldError) GetAvailableARPins(int NumRequested)
Parameters
Type Name Description
System.Int32 NumRequested
Returns
Type Description
System.ValueTuple<System.Collections.Generic.IReadOnlyCollection<FGuid>, EPassableWorldError>
Remarks

@param NumRequested Max number of AR Pins to query. Pass in a negative integer to get all available Pins. @param Pins Output array containing IDs of the found Pins. Valid only if return value is EPassableWorldError::None. @return Error code representing specific success or failure cases.

| Improve this Doc View Source

GetClosestARPin(Vector)

Returns the Pin closest to the target point passed in.

Declaration
public static (FGuid, EPassableWorldError) GetClosestARPin(Vector SearchPoint)
Parameters
Type Name Description
Vector SearchPoint
Returns
Type Description
System.ValueTuple<FGuid, EPassableWorldError>
Remarks

@param SearchPoint Position, in world space, to search the closest Pin to. @param PinID Output param for the ID of the closest Pin. Valid only if return value is EPassableWorldError::None. @return Error code representing specific success or failure cases.

| Improve this Doc View Source

GetNumAvailableARPins()

Returns the count of currently available AR Pins.

Declaration
public static (int, EPassableWorldError) GetNumAvailableARPins()
Returns
Type Description
System.ValueTuple<System.Int32, EPassableWorldError>
Remarks

@param Count Output param for number of currently available AR Pins. Valid only if return value is EPassableWorldError::None. @return Error code representing specific success or failure cases.

| Improve this Doc View Source

New(UObject, Name)

Spawn an object of this class

Declaration
public static MagicLeapARPinFunctionLibrary New(UObject obj = null, Name name = default(Name))
Parameters
Type Name Description
UObject obj
Name name
Returns
Type Description
MagicLeapARPinFunctionLibrary

Operators

| Improve this Doc View Source

Implicit(IntPtr to MagicLeapARPinFunctionLibrary)

Convert from IntPtr to UObject

Declaration
public static implicit operator MagicLeapARPinFunctionLibrary(IntPtr p)
Parameters
Type Name Description
System.IntPtr p
Returns
Type Description
MagicLeapARPinFunctionLibrary
  • Improve this Doc
  • View Source
Back to top Generated by DocFX