Esempio n. 1
0
 public override int GetHashCode()
 {
     return((int)Native_FSoftObjectPtr.GetTypeHash(ref this));
 }
Esempio n. 2
0
 public static bool operator !=(FSoftObjectPtrUnsafe a, FSoftObjectPtrUnsafe b)
 {
     return(!Native_FSoftObjectPtr.Equals(ref a, ref b));
 }
Esempio n. 3
0
 public bool Equals(FSoftObjectPtrUnsafe other)
 {
     return(Native_FSoftObjectPtr.Equals(ref this, ref other));
 }
Esempio n. 4
0
 public UObject LoadSynchronous()
 {
     return(GCHelper.Find(Native_FSoftObjectPtr.LoadSynchronous(ref this)));
 }
Esempio n. 5
0
 public void Reset()
 {
     Native_FSoftObjectPtr.Reset(ref this);
 }
Esempio n. 6
0
 public void Set(FWeakObjectPtr value)
 {
     Native_FSoftObjectPtr.SetFWeakObjectPtr(ref this, ref value);
 }
Esempio n. 7
0
 public void Set(UObject value)
 {
     Native_FSoftObjectPtr.SetUObject(ref this, value == null ? IntPtr.Zero : value.Address);
 }
Esempio n. 8
0
 public UObject Get()
 {
     return(GCHelper.Find(Native_FSoftObjectPtr.Get(ref this)));
 }