コード例 #1
0
 public static UWorld World(this FWorldContext worldContext)
 {
     return(GCHelper.Find <UWorld>(worldContext.CurrentWorld));
 }
コード例 #2
0
 public static UGameInstance GetOwningGameInstance(this FWorldContext worldContext)
 {
     return(GCHelper.Find <UGameInstance>(worldContext.OwningGameInstance));
 }
コード例 #3
0
        public AActor SpawnActor(UClass unrealClass, ref FVector location, ref FRotator rotation)
        {
            FActorSpawnParametersInterop parameters = default(FActorSpawnParametersInterop);

            return(GCHelper.Find <AActor>(Native_UWorld.SpawnActor(Address, unrealClass.Address, ref location, ref rotation, ref parameters)));
        }
コード例 #4
0
 public UWorld GetWorldFromContextObject(UObject obj)
 {
     return(GCHelper.Find <UWorld>(Native_UEngine.GetWorldFromContextObject(obj.Address, EGetWorldErrorMode.ReturnNull)));
 }
コード例 #5
0
 public static UGameInstance GetGameInstance(this UGameInstanceSubsystem Instance)
 {
     return(GCHelper.Find <UGameInstance>(Native_UGameInstanceSubsystem.GetGameInstance(Instance.Address)));
 }
コード例 #6
0
 public APlayerController GetFirstPlayerController()
 {
     return(GCHelper.Find <APlayerController>(Native_UWorld.GetFirstPlayerController(Address)));
 }
コード例 #7
0
ファイル: Actor_Injected.cs プロジェクト: jesst3r/USharp
 /// <summary>
 /// Return the ULevel that this Actor is part of.
 /// </summary>
 /// <returns></returns>
 public ULevel GetLevel()
 {
     return(GCHelper.Find <ULevel>(Native_AActor.GetLevel(this.Address)));
 }
コード例 #8
0
ファイル: FTickFunction.cs プロジェクト: yimengfan/USharp
 public T GetTarget <T>() where T : UObject
 {
     return(GCHelper.Find <T>(GetTargetPtr()));
 }
コード例 #9
0
ファイル: FTickFunction.cs プロジェクト: yimengfan/USharp
 public UObject GetTarget()
 {
     return(GCHelper.Find(GetTargetPtr()));
 }
コード例 #10
0
        internal override void SetupPlayerInputComponent(IntPtr playerInputComponentAddress)
        {
            UInputComponent playerInputComponent = GCHelper.Find <UInputComponent>(playerInputComponentAddress);

            SetupPlayerInputComponent(playerInputComponent);
        }
コード例 #11
0
ファイル: UBlueprint.cs プロジェクト: yimengfan/USharp
 /// <summary>
 /// Get the Blueprint object that generated the supplied class
 /// </summary>
 /// <param name="inClass"></param>
 /// <returns></returns>
 public static UBlueprint GetBlueprintFromClass(UClass inClass)
 {
     return(GCHelper.Find <UBlueprint>(Native_UBlueprint.GetBlueprintFromClass(inClass == null ? IntPtr.Zero : inClass.Address)));
 }