當前位置: 首頁>>代碼示例>>C#>>正文


C# SerializedProperty.ValidateObjectReferenceValue方法代碼示例

本文整理匯總了C#中UnityEditor.SerializedProperty.ValidateObjectReferenceValue方法的典型用法代碼示例。如果您正苦於以下問題:C# SerializedProperty.ValidateObjectReferenceValue方法的具體用法?C# SerializedProperty.ValidateObjectReferenceValue怎麽用?C# SerializedProperty.ValidateObjectReferenceValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在UnityEditor.SerializedProperty的用法示例。


在下文中一共展示了SerializedProperty.ValidateObjectReferenceValue方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: ValidateObjectFieldAssignment

 internal static UnityEngine.Object ValidateObjectFieldAssignment(UnityEngine.Object[] references, System.Type objType, SerializedProperty property)
 {
   if (references.Length > 0)
   {
     bool flag1 = DragAndDrop.objectReferences.Length > 0;
     bool flag2 = references[0] != (UnityEngine.Object) null && references[0].GetType() == typeof (Texture2D);
     if (objType == typeof (Sprite) && flag2 && flag1)
       return (UnityEngine.Object) SpriteUtility.TextureToSprite(references[0] as Texture2D);
     if (property != null)
     {
       if (references[0] != (UnityEngine.Object) null && property.ValidateObjectReferenceValue(references[0]))
         return references[0];
       if ((property.type == "PPtr<Sprite>" || property.type == "PPtr<$Sprite>" || property.type == "vector") && (flag2 && flag1))
         return (UnityEngine.Object) SpriteUtility.TextureToSprite(references[0] as Texture2D);
     }
     else
     {
       if (references[0] != (UnityEngine.Object) null && references[0].GetType() == typeof (GameObject) && typeof (Component).IsAssignableFrom(objType))
         references = (UnityEngine.Object[]) ((GameObject) references[0]).GetComponents(typeof (Component));
       foreach (UnityEngine.Object reference in references)
       {
         if (reference != (UnityEngine.Object) null && objType.IsAssignableFrom(reference.GetType()))
           return reference;
       }
     }
   }
   return (UnityEngine.Object) null;
 }
開發者ID:BlakeTriana,項目名稱:unity-decompiled,代碼行數:28,代碼來源:EditorGUI.cs

示例2: ValidateObjectFieldAssignment

		internal static UnityEngine.Object ValidateObjectFieldAssignment(UnityEngine.Object[] references, Type objType, SerializedProperty property)
		{
			if (references.Length > 0)
			{
				bool flag = DragAndDrop.objectReferences.Length > 0;
				bool flag2 = references[0] != null && references[0].GetType() == typeof(Texture2D);
				if (objType == typeof(Sprite) && flag2 && flag)
				{
					return SpriteUtility.TextureToSprite(references[0] as Texture2D);
				}
				if (property != null)
				{
					if (references[0] != null && property.ValidateObjectReferenceValue(references[0]))
					{
						return references[0];
					}
					if ((property.type == "PPtr<Sprite>" || property.type == "PPtr<$Sprite>" || property.type == "vector") && flag2 && flag)
					{
						return SpriteUtility.TextureToSprite(references[0] as Texture2D);
					}
				}
				else
				{
					if (references[0] != null && references[0].GetType() == typeof(GameObject) && typeof(Component).IsAssignableFrom(objType))
					{
						GameObject gameObject = (GameObject)references[0];
						references = gameObject.GetComponents(typeof(Component));
					}
					UnityEngine.Object[] array = references;
					for (int i = 0; i < array.Length; i++)
					{
						UnityEngine.Object @object = array[i];
						if (@object != null && objType.IsAssignableFrom(@object.GetType()))
						{
							return @object;
						}
					}
				}
			}
			return null;
		}
開發者ID:guozanhua,項目名稱:UnityDecompiled,代碼行數:41,代碼來源:EditorGUI.cs


注:本文中的UnityEditor.SerializedProperty.ValidateObjectReferenceValue方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。