Esempio n. 1
0
 /// <summary>
 /// Faster version of IsValidLowLevel.
 /// Checks to see if the object appears to be valid by checking pointers and their alignment.
 /// Name and InternalIndex checks are less accurate than IsValidLowLevel.
 /// </summary>
 /// <param name="recursive">true if the Class pointer should be checked with IsValidLowLevelFast</param>
 /// <returns>true if this appears to be a valid object</returns>
 public bool IsValidLowLevelFast(bool recursive = true)
 {
     return(Native_UObjectBase.IsValidLowLevelFast(Address, recursive));
 }