123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- using System;
- using UnityEngine;
- #if UNITY_EDITOR
- using UnityEditor;
- #endif
- #pragma warning disable 618, 649
- namespace UnityStandardAssets.Utility
- {
- #if UNITY_EDITOR
- [ExecuteInEditMode]
- #endif
- public class PlatformSpecificContent : MonoBehaviour
- #if UNITY_EDITOR
- , UnityEditor.Build.IActiveBuildTargetChanged
- #endif
- {
- private enum BuildTargetGroup
- {
- Standalone,
- Mobile
- }
- [SerializeField]
- private BuildTargetGroup m_BuildTargetGroup;
- [SerializeField]
- private GameObject[] m_Content = new GameObject[0];
- [SerializeField]
- private MonoBehaviour[] m_MonoBehaviours = new MonoBehaviour[0];
- [SerializeField]
- private bool m_ChildrenOfThisObject;
- #if !UNITY_EDITOR
- void OnEnable()
- {
- CheckEnableContent();
- }
- #else
- public int callbackOrder
- {
- get
- {
- return 1;
- }
- }
- #endif
- #if UNITY_EDITOR
- private void OnEnable()
- {
- EditorApplication.update += Update;
- }
- private void OnDisable()
- {
- EditorApplication.update -= Update;
- }
- public void OnActiveBuildTargetChanged(BuildTarget previousTarget, BuildTarget newTarget)
- {
- CheckEnableContent();
- }
- private void Update()
- {
- CheckEnableContent();
- }
- #endif
- private void CheckEnableContent()
- {
- #if (UNITY_IPHONE || UNITY_ANDROID || UNITY_WP8 || UNITY_TIZEN)
- if (m_BuildTargetGroup == BuildTargetGroup.Mobile)
- {
- EnableContent(true);
- } else {
- EnableContent(false);
- }
- #endif
- #if !(UNITY_IPHONE || UNITY_ANDROID || UNITY_WP8 || UNITY_TIZEN)
- if (m_BuildTargetGroup == BuildTargetGroup.Mobile)
- {
- EnableContent(false);
- }
- else
- {
- EnableContent(true);
- }
- #endif
- }
- private void EnableContent(bool enabled)
- {
- if (m_Content.Length > 0)
- {
- foreach (var g in m_Content)
- {
- if (g != null)
- {
- g.SetActive(enabled);
- }
- }
- }
- if (m_ChildrenOfThisObject)
- {
- foreach (Transform t in transform)
- {
- t.gameObject.SetActive(enabled);
- }
- }
- if (m_MonoBehaviours.Length > 0)
- {
- foreach (var monoBehaviour in m_MonoBehaviours)
- {
- monoBehaviour.enabled = enabled;
- }
- }
- }
- }
- }
|