Esempio n. 1
0
bool UStructProperty::UseBinarySerialization(const FArchive& Ar) const
{
	return !(Ar.IsLoading() || Ar.IsSaving()) 
		||	Ar.WantBinaryPropertySerialization()
		||	(0 != (Struct->StructFlags & STRUCT_Immutable));
}