//float extraSpace = 0;

    /// <summary>
    /// Draw the Map Marker inspector.
    /// </summary>

    public override void OnInspectorGUI()
    {
#if UNITY_4_3
        EditorGUIUtility.LookLikeControls(120f);
#else
        EditorGUIUtility.labelWidth = 120f;
#endif

        m = target as NJGMapItem;

        NJGEditorTools.DrawEditMap();

        if (UIMiniMapBase.inst != null)
        {
            string info = "Map Position: " + UIMiniMapBase.inst.WorldToMap(m.cachedTransform.position).ToString();

            GUI.color = Color.cyan;
            EditorGUILayout.LabelField(info, EditorStyles.boldLabel);
            GUI.color = Color.white;
        }

        NJGEditorTools.DrawSeparator();

        int type = 0;
        if (NJG.NJGMapBase.instance != null)
        {
            type = NJGEditorTools.DrawList("Marker Type", NJG.NJGMapBase.instance.mapItemTypes, m.type);
        }

        string tooltip = "You can use to display name + anything else you want.\nFor example: Ore [FF0000]+100 Mineral[-]";
        string content = "";

        if (type != 0)
        {
            EditorGUILayout.LabelField(new GUIContent("Tooltip Content", tooltip));
            content = EditorGUILayout.TextArea(m.content);

            GUI.backgroundColor = Color.gray;
            EditorGUILayout.HelpBox(tooltip, MessageType.Info);
            GUI.backgroundColor = Color.white;
        }

        //m.drawDirection = EditorGUILayout.Toggle("Draw Direction Line", m.drawDirection);
        bool revealFOW = EditorGUILayout.Toggle("Reveal FOW", m.revealFOW);
        GUI.enabled = m.revealFOW;
        int revealDistance = (int)EditorGUILayout.Slider("Reveal Distance", m.revealDistance, 0, 100);
        GUI.enabled         = true;
        GUI.backgroundColor = Color.gray;
        EditorGUILayout.HelpBox("Overrides Global Reveal Distance, if value = 0 it will use the global reveal distance.", MessageType.Info);
        GUI.backgroundColor = Color.white;

        /*if (NJG.NJGMapBase.instance != null)
         * {
         *      if (NJG.NJGMapBase.instance.atlas != null)
         *      {
         *              GUILayout.BeginHorizontal();
         *              EditorGUILayout.LabelField("Icon Sprite", GUILayout.Width(100.0f));
         *
         *              // Draw sprite preview.
         *              Material mat = NJG.NJGMapBase.instance.atlas.spriteMaterial;
         *
         *              if (mat != null)
         *              {
         *                      Texture2D tex = mat.mainTexture as Texture2D;
         *
         *                      if (tex != null)
         *                      {
         *                              UIAtlas.Sprite sprite = m.sprite;
         *                              Rect rect = sprite.outer;
         *                              if (NJG.NJGMapBase.instance.atlas.coordinates == UIAtlas.Coordinates.Pixels)
         *                              {
         *                                      rect = NGUIMath.ConvertToTexCoords(rect, tex.width, tex.height);
         *                              }
         *
         *                              GUILayout.Space(4f);
         *                              GUILayout.Label("", GUILayout.Height(NJGMapBase.instance.iconSize));
         *                              GUI.color = m.color;
         *                              DrawSprite(tex, rect, null, false, NJGMapBase.instance.iconSize);
         *                              GUI.color = Color.white;
         *
         *                              extraSpace = NJGMapBase.instance.iconSize * (float)sprite.outer.height / sprite.outer.width;
         *                      }
         *
         *              }
         *              GUILayout.EndHorizontal();
         *
         *              extraSpace = Mathf.Max(0f, extraSpace - 30f);
         *              //GUILayout.Space(extraSpace);
         *      }
         *      EditorGUILayout.Separator();
         * }*/

        EditorGUILayout.Separator();

        if (m.type != type ||
            m.content != content ||
            m.revealFOW != revealFOW ||
            m.revealDistance != revealDistance)
        {
            m.type           = type;
            m.content        = content;
            m.revealFOW      = revealFOW;
            m.revealDistance = revealDistance;
            NJGEditorTools.RegisterUndo("Map Item Properties", m);
        }
    }
Exemple #2
0
        /// <summary>
        /// Draw the inspector.
        /// </summary>

        public override void OnInspectorGUI()
        {
#if UNITY_4_3
            EditorGUIUtility.LookLikeControls(90f);
#else
            EditorGUIUtility.labelWidth = 90f;
#endif
            m = target as UIWorldMapBase;

            PrefabType type = PrefabUtility.GetPrefabType(m.gameObject);

            if (m.material == null && m.planeRenderer != null)
            {
                m.material = NJGEditorTools.GetMaterial(m, false);
            }

            NJGEditorTools.DrawEditMap();

            DrawNotFound();

            GUILayout.BeginVertical();
            EditorGUILayout.Separator();

            mShader = (NJGMapBase.ShaderType)EditorGUILayout.EnumPopup("Shader Type", m.shaderType);
            if (mShader == NJGMapBase.ShaderType.ColorMask)
            {
                EditorGUILayout.HelpBox("Use the camera background color for masking", MessageType.Info);
                //m.colorMask = EditorGUILayout.ColorField("Color Mask", m.colorMask);
            }

            /*if (NJGMapBase.instance.fow.enabled && mShader != NJGMapBase.ShaderType.FOW)
             * {
             *      m.shaderType = mShader = NJGMapBase.ShaderType.FOW;
             *      m.material.shader = Shader.Find("NinjutsuGames/Map FOW");
             *      EditorUtility.SetDirty(m);
             *      //EditorGUILayout.HelpBox("Fog of War is enabled\nIn order to make it work the shader type should be FOW\nIgnore this warning if you don't want to use FOW for this instance.", MessageType.Warning);
             * }
             * else if (!NJGMapBase.instance.fow.enabled && mShader == NJGMapBase.ShaderType.FOW)
             * {
             *      m.shaderType = mShader = NJGMapBase.ShaderType.TextureMask;
             *      m.material.shader = Shader.Find("NinjutsuGames/Map TextureMask");
             *      EditorUtility.SetDirty(m);
             * }*/

            if (m.maskTexture == null)
            {
                m.maskTexture = mTempTex;
            }

            mMask = (Texture2D)EditorGUILayout.ObjectField("Map Mask", m.maskTexture, typeof(Texture2D), false);

            if (m.maskTexture != mMask)
            {
                m.maskTexture = mMask;
                m.material.SetTexture("_Mask", m.maskTexture);
                EditorUtility.SetDirty(m);
            }

            if (m.shaderType != mShader)
            {
                m.shaderType = mShader;

                Shader s = Shader.Find("NinjutsuGames/Map TextureMask");
                switch (mShader)
                {
                case NJGMapBase.ShaderType.TextureMask:
                    s = Shader.Find("NinjutsuGames/Map TextureMask");
                    NJGMapBase.instance.fow.enabled = false;
                    break;

                case NJGMapBase.ShaderType.ColorMask:
                    s = Shader.Find("NinjutsuGames/Map ColorMask");
                    m.material.SetColor("_MaskColor", NJGMapBase.instance.cameraBackgroundColor);
                    NJGMapBase.instance.fow.enabled = false;
                    break;

                case NJGMapBase.ShaderType.FOW:
                    s = Shader.Find("NinjutsuGames/Map FOW");
                    NJGMapBase.instance.fow.enabled = true;
                    break;
                }
                m.material.shader = s;
                if (m.planeRenderer != null)
                {
                    if (Application.isPlaying)
                    {
                        m.planeRenderer.material.shader = s;
                    }
                    else
                    {
                        m.planeRenderer.sharedMaterial.shader = s;
                    }
                }
                NJGEditorTools.RegisterUndo("UIWorldMap Shader Type", m);
            }

            EditorGUILayout.Separator();
            GUILayout.EndVertical();

#if UNITY_4_3
            EditorGUIUtility.LookLikeControls(120f);
#else
            EditorGUIUtility.labelWidth = 120f;
#endif

            bool shouldBeOn = NJGEditorTools.DrawHeader("UI Settings");
            if (shouldBeOn)
            {
                Color c = Color.grey;
                c.a = 0.5f;
                GUI.backgroundColor = c;
                NJGEditorTools.BeginContents();
                GUI.backgroundColor = Color.white;

                DrawDepth(type == PrefabType.Prefab);

                m.mapColor = EditorGUILayout.ColorField("Color", m.mapColor);

                if (mColor != m.mapColor)
                {
                    mColor = m.mapColor;
                    if (m.material != null)
                    {
                        m.material.color = m.mapColor;
                    }
                    EditorUtility.SetDirty(m);
                }

                GUILayout.BeginHorizontal();
                EditorGUILayout.LabelField(new GUIContent("Culling Radius", "If icons get farther this radius they will dissapear"), GUILayout.Width(116f));
                GUI.enabled = !m.calculateBorder;
#if UNITY_4_3
                mapBorderRadius = EditorGUILayout.FloatField(m.mapBorderRadius);
#else
                mapBorderRadius = EditorGUILayout.FloatField(m.mapBorderRadius, GUILayout.Width(158f));
#endif
                GUI.enabled     = true;
                calculateBorder = EditorGUILayout.Toggle(new GUIContent("Automatic", "Check this option if you want this value to be autmatically calculated at start."), m.calculateBorder);
#if UNITY_4_3
                EditorGUIUtility.LookLikeControls(120f);
#else
                EditorGUIUtility.labelWidth = 120f;
#endif
                GUILayout.EndHorizontal();

                /*GUILayout.BeginHorizontal();
                 * EditorGUILayout.LabelField("Dimensions", GUILayout.Width(116f));
                 * EditorGUIUtility.LookLikeControls(10f);
                 * mMapScale.x = EditorGUILayout.IntField((int)m.mapScale.x);
                 * EditorGUIUtility.LookLikeControls(12f);
                 * EditorGUILayout.LabelField("x", GUILayout.Width(15f));
                 * mMapScale.y = EditorGUILayout.IntField((int)m.mapScale.y);
                 * EditorGUIUtility.LookLikeControls(80f);
                 * GUILayout.EndHorizontal();
                 *
                 * if (m.mapScale != mMapScale)
                 * {
                 *      mMapScale.x = (int)mMapScale.x;
                 *      mMapScale.y = (int)mMapScale.y;
                 *      m.mapScale = mMapScale;
                 *      EditorUtility.SetDirty(m);
                 * }*/

                NJGEditorTools.EndContents();
                EditorGUILayout.Separator();
            }

            shouldBeOn = NJGEditorTools.DrawHeader("Zoom Settings");
            if (shouldBeOn)
            {
                Color c = Color.grey;
                c.a = 0.5f;
                GUI.backgroundColor = c;
                NJGEditorTools.BeginContents();
                GUI.backgroundColor = Color.white;

                GUILayout.BeginHorizontal();
                mouseWheel       = EditorGUILayout.Toggle("Mouse Wheel", m.mouseWheelEnabled, GUILayout.Width(140f));
                GUI.contentColor = mouseWheel ? Color.cyan : Color.gray;
                EditorGUILayout.LabelField("Enable Mouse Wheel zoom.");
                GUI.contentColor = Color.white;
                GUILayout.EndHorizontal();

                GUILayout.BeginHorizontal();
                zoom = EditorGUILayout.Slider(new GUIContent("Zoom", "Current zoom level"), m.zoom, m.minZoom, m.maxZoom);
                if (m.zoom != zoom)
                {
                    if (!LeanTween.isTweening(m.gameObject))
                    {
                        m.zoom = Mathf.Clamp(zoom, m.minZoom, m.maxZoom);
                    }
                    EditorUtility.SetDirty(m);
                }
                GUILayout.EndHorizontal();
                GUILayout.BeginHorizontal();

                EditorGUILayout.LabelField(new GUIContent("Range", "Min and Max level of zoom"), GUILayout.Width(116.0f));
                minZoom = EditorGUILayout.FloatField(m.minZoom, GUILayout.Width(25.0f));
                EditorGUILayout.MinMaxSlider(ref minZoom, ref maxZoom, 1, 30);
                maxZoom = EditorGUILayout.FloatField(m.maxZoom, GUILayout.Width(25.0f));
                GUILayout.EndHorizontal();

                mEasing = (LeanTweenType)EditorGUILayout.EnumPopup("Easing", m.zoomEasing);
                if (m.zoomEasing != mEasing)
                {
                    m.zoomEasing = mEasing;
                    EditorUtility.SetDirty(m);
                }

                zoomSpeed = EditorGUILayout.Slider(new GUIContent("Speed", "Zoom animation speed"), m.zoomSpeed, 0, 2);

                ShowSelector("Zoom In Key", m.zoomInKey, delegate(KeyCode k) { m.keysInUse[0] = k; m.zoomInKey = k; EditorUtility.SetDirty(m); });
                ShowSelector("Zoom Out Key", m.zoomOutKey, delegate(KeyCode k) { m.keysInUse[1] = k; m.zoomOutKey = k; EditorUtility.SetDirty(m); });

                NJGEditorTools.EndContents();
                EditorGUILayout.Separator();
            }

            shouldBeOn = NJGEditorTools.DrawHeader("Panning Settings");
            if (shouldBeOn)
            {
                Color c = Color.grey;
                c.a = 0.5f;
                GUI.backgroundColor = c;
                NJGEditorTools.BeginContents();
                GUI.backgroundColor = Color.white;

                m.panning            = EditorGUILayout.Toggle("Enabled", m.panning, GUILayout.Width(140f));
                GUI.enabled          = m.panning;
                m.panningEasing      = (LeanTweenType)EditorGUILayout.EnumPopup("Easing", m.panningEasing);
                m.panningSpeed       = EditorGUILayout.Slider(new GUIContent("Speed", "How fast the panning should move"), m.panningSpeed, 0, 5);
                m.panningSensitivity = EditorGUILayout.Slider(new GUIContent("Sensitivy", "How fast the panning should respond on mouse move"), m.panningSensitivity, 0.1f, 10f);
                m.panningMoveBack    = EditorGUILayout.Toggle(new GUIContent("Return on Release", "Moves back the panning to its original position"), m.panningMoveBack, GUILayout.Width(140f));
                GUI.enabled          = true;
                EditorGUILayout.Separator();

                if (mColor != m.mapColor)
                {
                    mColor = m.mapColor;
                    if (m.material != null)
                    {
                        m.material.color = m.mapColor;
                        m.material.SetColor("_Color", m.mapColor);
                    }
                }

                if (m.minZoom != minZoom ||
                    m.maxZoom != maxZoom ||
                    m.zoomSpeed != zoomSpeed ||
                    m.mouseWheelEnabled != mouseWheel ||
                    m.mapBorderRadius != mapBorderRadius ||
                    m.calculateBorder != calculateBorder)
                {
                    m.mapBorderRadius   = mapBorderRadius;
                    m.calculateBorder   = calculateBorder;
                    m.minZoom           = minZoom;
                    m.maxZoom           = maxZoom;
                    m.zoomSpeed         = zoomSpeed;
                    m.mouseWheelEnabled = mouseWheel;
                    EditorUtility.SetDirty(m);
                }
                NJGEditorTools.EndContents();
                EditorGUILayout.Separator();
            }

            /*if (mColorMask != m.colorMask)
             * {
             *      mColorMask = m.colorMask;
             *      if (m.uiTexture != null) m.uiTexture.material.SetColor("_MaskColor", m.colorMask);
             * }*/

            if (GUI.changed)
            {
                EditorUtility.SetDirty(m);
            }
        }
Exemple #3
0
        /// <summary>
        /// Draw the inspector.
        /// </summary>

        public override void OnInspectorGUI()
        {
#if UNITY_4_3
            EditorGUIUtility.LookLikeControls(120f);
#else
            EditorGUIUtility.labelWidth = 120f;
#endif
            m = target as UIMiniMapBase;

            PrefabType type = PrefabUtility.GetPrefabType(m.gameObject);

            if (m.material == null)
            {
                m.material = NJGEditorTools.GetMaterial(m, true);
            }

            NJGEditorTools.DrawEditMap();

            DrawNotFound();

            targetObj = (Transform)EditorGUILayout.ObjectField(new GUIContent("Map Target", "The object that this map is going to follow"), m.target, typeof(Transform), true);

            if (m.target == null)
            {
                if (Application.isPlaying)
                {
                    EditorGUILayout.HelpBox("No target has been found, assign the tag to your target or drag it manually to the target field.", MessageType.Warning);
                }
                else
                {
                    EditorGUILayout.HelpBox("No target has been assigned, the target can be set automatically by using a tag or drag it manually to the target field.", MessageType.Warning);
                }
            }

            targetTag = EditorGUILayout.TagField(new GUIContent("Target Tag", "Assign a tag to auto search for the Map Target"), m.targetTag);

            GUILayout.BeginHorizontal();
            limitBounds      = EditorGUILayout.Toggle("Limit Map Bounds", m.limitBounds, GUILayout.Width(140f));
            GUI.contentColor = limitBounds ? Color.cyan : Color.gray;
            EditorGUILayout.LabelField("Prevent map to display beyond borders.");
            GUI.contentColor = Color.white;
            GUILayout.EndHorizontal();

            GUILayout.BeginHorizontal();
            rotateWithPlayer = EditorGUILayout.Toggle("Lock Rotation", m.rotateWithPlayer, GUILayout.Width(140f));
            GUI.contentColor = rotateWithPlayer ? Color.cyan : Color.gray;
            EditorGUILayout.LabelField("Makes the map follow target rotation.");
            GUI.contentColor = Color.white;
            GUILayout.EndHorizontal();

            ShowSelector("World Map Key", m.mapKey, delegate(KeyCode k) { m.keysInUse[2] = k; m.mapKey = k; EditorUtility.SetDirty(m); });
            ShowSelector("Lock Key", m.lockKey, delegate(KeyCode k) { m.keysInUse[0] = k; m.lockKey = k; EditorUtility.SetDirty(m); });

            mShader = (NJGMapBase.ShaderType)EditorGUILayout.EnumPopup("Shader Type", m.shaderType);
            if (mShader == NJGMapBase.ShaderType.ColorMask)
            {
                EditorGUILayout.HelpBox("Use the camera background color for masking", MessageType.Info);
                //m.colorMask = EditorGUILayout.ColorField("Color Mask", m.colorMask);
            }

            /*if (mShader != NJGMapBase.ShaderType.FOW)
             * {
             *      NJGMapBase.instance.fow.enabled = true;
             *      m.shaderType = mShader = NJGMapBase.ShaderType.FOW;
             *      m.material.shader = Shader.Find("NinjutsuGames/Map FOW");
             *      NJGEditorTools.RegisterUndo("UIMiniMap Setting", m);
             *      //EditorGUILayout.HelpBox("Fog of War is enabled\nIn order to make it work the shader type should be FOW\nIgnore this warning if you don't want to use FOW for this instance.", MessageType.Warning);
             * }
             * else
             * {
             *      NJGMapBase.instance.fow.enabled = false;
             *      m.shaderType = mShader = NJGMapBase.ShaderType.TextureMask;
             *      m.material.shader = Shader.Find("NinjutsuGames/Map TextureMask");
             *      NJGEditorTools.RegisterUndo("UIMiniMap Setting", m);
             * }*/

            if (m.shaderType != mShader)
            {
                m.shaderType = mShader;
                Shader s = Shader.Find("NinjutsuGames/Map TextureMask");
                switch (mShader)
                {
                case NJGMapBase.ShaderType.TextureMask:
                    s = Shader.Find("NinjutsuGames/Map TextureMask");
                    NJGMapBase.instance.fow.enabled = false;
                    break;

                case NJGMapBase.ShaderType.ColorMask:
                    s = Shader.Find("NinjutsuGames/Map ColorMask");
                    m.material.SetColor("_MaskColor", NJGMapBase.instance.cameraBackgroundColor);
                    NJGMapBase.instance.fow.enabled = false;
                    break;

                case NJGMapBase.ShaderType.FOW:
                    s = Shader.Find("NinjutsuGames/Map FOW");
                    NJGMapBase.instance.fow.enabled = true;
                    break;
                }
                m.material.shader = s;
                if (m.planeRenderer != null)
                {
                    if (Application.isPlaying)
                    {
                        m.planeRenderer.material.shader = s;
                    }
                    else
                    {
                        m.planeRenderer.sharedMaterial.shader = s;
                    }
                }
                NJGEditorTools.RegisterUndo("UIMiniMap Shader Type", m);
            }

            m.maskTexture = (Texture2D)EditorGUILayout.ObjectField("Mask", m.maskTexture, typeof(Texture2D), false);

            if (mMask != m.maskTexture)
            {
                mMask = m.maskTexture;
                m.material.SetTexture("_Mask", m.maskTexture);
                NJGEditorTools.RegisterUndo("UIMiniMap Setting", m);
            }

            bool shouldBeOn = NJGEditorTools.DrawHeader("UI Settings");
            if (shouldBeOn)
            {
                Color c = Color.grey;
                c.a = 0.5f;
                GUI.backgroundColor = c;
                NJGEditorTools.BeginContents();
                GUI.backgroundColor = Color.white;

                DrawDepth(type == PrefabType.Prefab);

                mPivot = (UIMiniMapBase.Pivot)EditorGUILayout.EnumPopup("Alignment", m.pivot);
                if (m.pivot != mPivot)
                {
                    m.pivot = mPivot;
                    EditorUtility.SetDirty(m);
                    m.UpdateAlignment();
                }

                m.mapColor = EditorGUILayout.ColorField("Color", m.mapColor);

                if (mColor != m.mapColor)
                {
                    mColor = m.mapColor;
                    if (m.material != null)
                    {
                        m.material.color = m.mapColor;
                    }

                    NJGEditorTools.RegisterUndo("UIMiniMap Setting", m);
                }

                /*GUILayout.BeginHorizontal();
                 * EditorGUILayout.LabelField("Dimensions", GUILayout.Width(116f));
                 * EditorGUIUtility.LookLikeControls(10f);
                 * mMapScale.x = EditorGUILayout.IntField((int)m.mapScale.x);
                 * EditorGUIUtility.LookLikeControls(12f);
                 * EditorGUILayout.LabelField("x", GUILayout.Width(15f));
                 * mMapScale.y = EditorGUILayout.IntField((int)m.mapScale.y);
                 * EditorGUIUtility.LookLikeControls(80f);
                 * GUILayout.EndHorizontal();*/

                mMapScale = EditorGUILayout.Vector2Field("Dimensions", m.mapScale);

                if (m.mapScale != mMapScale)
                {
                    mMapScale.x = (int)mMapScale.x;
                    mMapScale.y = (int)mMapScale.y;
                    m.mapScale  = mMapScale;
                    NJGEditorTools.RegisterUndo("UIMiniMap Setting", m);
                    m.UpdateAlignment();
                }

                /*GUILayout.BeginHorizontal();
                 * EditorGUILayout.LabelField("Margin", GUILayout.Width(116f));
                 * EditorGUIUtility.LookLikeControls(10f);
                 * mMargin.x = EditorGUILayout.IntField((int)m.margin.x);
                 * EditorGUIUtility.LookLikeControls(12f);
                 * EditorGUILayout.LabelField("x", GUILayout.Width(15f));
                 * mMargin.y = EditorGUILayout.IntField((int)m.margin.y);
                 * EditorGUIUtility.LookLikeControls(80f);
                 * GUILayout.EndHorizontal();*/

                mMargin = EditorGUILayout.Vector2Field("Margin", m.margin);

                if (m.margin != mMargin)
                {
                    m.margin.x = (int)mMargin.x;
                    m.margin.y = (int)mMargin.y;
                    NJGEditorTools.RegisterUndo("UIMiniMap Setting", m);
                    m.UpdateAlignment();
                }

                GUILayout.BeginHorizontal();
                EditorGUILayout.LabelField(new GUIContent("Culling Radius", "If icons get farther this radius they will dissapear"), GUILayout.Width(116f));
                GUI.enabled = !m.calculateBorder;
#if UNITY_4_3
                mapBorderRadius = EditorGUILayout.FloatField(m.mapBorderRadius);
#else
                mapBorderRadius = EditorGUILayout.FloatField(m.mapBorderRadius, GUILayout.Width(158f));
#endif
                GUI.enabled     = true;
                calculateBorder = EditorGUILayout.Toggle(new GUIContent("Automatic", "Check this option if you want this value to be autmatically calculated at start."), m.calculateBorder);
#if UNITY_4_3
                EditorGUIUtility.LookLikeControls(120f);
#else
                EditorGUIUtility.labelWidth = 120f;
#endif
                GUILayout.EndHorizontal();

                DrawFrameUI();

                northIcon = (GameObject)EditorGUILayout.ObjectField(new GUIContent("North Icon", "Optional north icon. Will be automatically placed if its assigned."), m.northIcon, typeof(GameObject), true);
                //if (northIcon != null)
                //	northIconOffset = EditorGUILayout.IntField(new GUIContent("North Icon Offset", "Adjust the north icon distance from map border"), m.northIconOffset);
                NJGEditorTools.EndContents();
                EditorGUILayout.Separator();
            }
            shouldBeOn = NJGEditorTools.DrawHeader("Zoom Settings");
            if (shouldBeOn)
            {
                Color c = Color.grey;
                c.a = 0.5f;
                GUI.backgroundColor = c;
                NJGEditorTools.BeginContents();
                GUI.backgroundColor = Color.white;

                //EditorGUILayout.LabelField("Zoom Settings", EditorStyles.boldLabel);

                GUILayout.BeginHorizontal();
                mouseWheel       = EditorGUILayout.Toggle("Mouse Wheel", m.mouseWheelEnabled, GUILayout.Width(140f));
                GUI.contentColor = mouseWheel ? Color.cyan : Color.gray;
                EditorGUILayout.LabelField("Enable Mouse Wheel zoom.");
                GUI.contentColor = Color.white;
                GUILayout.EndHorizontal();

                GUILayout.BeginHorizontal();
                zoom = EditorGUILayout.Slider(new GUIContent("Zoom", "Current zoom level"), m.zoom, m.minZoom, m.maxZoom);
                if (m.zoom != zoom)
                {
                    if (!LeanTween.isTweening(m.gameObject))
                    {
                        m.zoom = Mathf.Clamp(zoom, m.minZoom, m.maxZoom);
                    }
                    NJGEditorTools.RegisterUndo("UIMiniMap Setting", m);
                }
                GUILayout.EndHorizontal();

                zoomAmount = EditorGUILayout.Slider(new GUIContent("Amount", "How much should zoom in/out when zoom function is called."), m.zoomAmount, 0.01f, 5);

                GUILayout.BeginHorizontal();
                EditorGUILayout.LabelField(new GUIContent("Range", "Min and Max level of zoom"), GUILayout.Width(116.0f));
                minZoom = EditorGUILayout.FloatField(m.minZoom, GUILayout.Width(25.0f));
                EditorGUILayout.MinMaxSlider(ref minZoom, ref maxZoom, 1, 30);
                maxZoom = EditorGUILayout.FloatField(m.maxZoom, GUILayout.Width(25.0f));
                //minZoom = Mathf.Round(minZoom);
                //maxZoom = Mathf.Round(maxZoom);
                GUILayout.EndHorizontal();

                mEasing = (LeanTweenType)EditorGUILayout.EnumPopup("Easing", m.zoomEasing);
                if (m.zoomEasing != mEasing)
                {
                    m.zoomEasing = mEasing;
                    NJGEditorTools.RegisterUndo("UIMiniMap Setting", m);
                }

                zoomSpeed = EditorGUILayout.Slider(new GUIContent("Speed", "Zoom animation speed"), m.zoomSpeed, 0f, 2f);

                ShowSelector("Zoom In Key", m.zoomInKey, delegate(KeyCode k) { m.keysInUse[0] = k; m.zoomInKey = k; NJGEditorTools.RegisterUndo("UIMiniMap Setting", m); });
                ShowSelector("Zoom Out Key", m.zoomOutKey, delegate(KeyCode k) { m.keysInUse[1] = k; m.zoomOutKey = k; NJGEditorTools.RegisterUndo("UIMiniMap Setting", m); });

                NJGEditorTools.EndContents();
                EditorGUILayout.Separator();
            }

            shouldBeOn = NJGEditorTools.DrawHeader("Panning Settings");
            if (shouldBeOn)
            {
                Color c = Color.grey;
                c.a = 0.5f;
                GUI.backgroundColor = c;
                NJGEditorTools.BeginContents();
                GUI.backgroundColor = Color.white;

                panning            = EditorGUILayout.Toggle("Enabled", m.panning, GUILayout.Width(140f));
                GUI.enabled        = panning;
                panningEase        = (LeanTweenType)EditorGUILayout.EnumPopup("Easing", m.panningEasing);
                panningSpeed       = EditorGUILayout.Slider(new GUIContent("Speed", "How fast the panning should move"), m.panningSpeed, 0, 5);
                panningSensitivity = EditorGUILayout.Slider(new GUIContent("Sensitivy", "How fast the panning should respond on mouse move"), m.panningSensitivity, 0.1f, 10f);
                panningMoveBack    = EditorGUILayout.Toggle(new GUIContent("Return on Release", "Moves back the panning to its original position"), m.panningMoveBack, GUILayout.Width(140f));
                GUI.enabled        = true;
                NJGEditorTools.EndContents();
                EditorGUILayout.Separator();
            }

            if (m.limitBounds != limitBounds ||
                m.rotateWithPlayer != rotateWithPlayer ||
                m.target != targetObj ||
                m.targetTag != targetTag ||
                m.minZoom != minZoom ||
                m.maxZoom != maxZoom ||
                m.zoomSpeed != zoomSpeed ||
                m.mapBorderRadius != mapBorderRadius ||
                m.northIcon != northIcon ||
                //m.northIconOffset != northIconOffset ||
                m.calculateBorder != calculateBorder ||
                m.mouseWheelEnabled != mouseWheel ||
                m.panning != panning ||
                m.panningSpeed != panningSpeed ||
                m.panningEasing != panningEase ||
                m.panningMoveBack != panningMoveBack ||
                m.panningSensitivity != panningSensitivity ||
                m.zoomAmount != zoomAmount)
            {
                m.zoomAmount         = zoomAmount;
                m.panningSensitivity = panningSensitivity;
                m.panningMoveBack    = panningMoveBack;
                m.panning            = panning;
                m.panningSpeed       = panningSpeed;
                m.panningEasing      = panningEase;
                m.limitBounds        = limitBounds;
                m.rotateWithPlayer   = rotateWithPlayer;
                m.target             = targetObj;
                m.targetTag          = targetTag;
                m.minZoom            = minZoom;
                m.maxZoom            = maxZoom;
                m.zoomSpeed          = zoomSpeed;
                m.mapBorderRadius    = mapBorderRadius;
                m.northIcon          = northIcon;
                //m.northIconOffset = northIconOffset;
                m.calculateBorder   = calculateBorder;
                m.mouseWheelEnabled = mouseWheel;
                NJGEditorTools.RegisterUndo("Changed Minimap Settings", m);
            }

            if (GUI.changed)
            {
                EditorUtility.SetDirty(m);
            }
        }
    /// <summary>
    /// Draw the inspector.
    /// </summary>

    public override void OnInspectorGUI()
    {
#if UNITY_4_3
        EditorGUIUtility.LookLikeControls(130f);
#else
        EditorGUIUtility.labelWidth = 130f;
#endif
        m = target as NJGMapZone;

        NJGEditorTools.DrawEditMap();

        GUILayout.BeginHorizontal("AppToolbar");
        EditorGUILayout.LabelField(new GUIContent("Zone Name Preview", ""), GUILayout.Width(130f));
        GUI.contentColor = m.color;
        EditorGUILayout.LabelField(new GUIContent(m.zone, ""), EditorStyles.boldLabel);
        GUI.contentColor = Color.white;
        GUILayout.EndHorizontal();

        string level             = NJGEditorTools.DrawList("Level", NJGMapBase.instance.GetLevels(), m.level);
        string zone              = NJGEditorTools.DrawList("Zone", NJGMapBase.instance.GetZones(m.level), m.zone);
        string triggerTag        = EditorGUILayout.TagField("Trigger Tag", m.triggerTag);
        int    colliderRadius    = (int)EditorGUILayout.Slider("Collider Radius", m.colliderRadius, 1, 1000);
        bool   generateOnTrigger = EditorGUILayout.Toggle("Generate On Trigger", m.generateOnTrigger);

        string name = "Zone - [" + NJGMapZone.list.IndexOf(m) + "] " + m.zone;

        if (m.name != name ||
            m.level != level ||
            m.zone != zone ||
            m.triggerTag != triggerTag ||
            m.colliderRadius != colliderRadius ||
            m.generateOnTrigger != generateOnTrigger)
        {
            m.name                = name;
            m.level               = level;
            m.zone                = zone;
            m.triggerTag          = triggerTag;
            m.colliderRadius      = colliderRadius;
            m.zoneCollider.radius = colliderRadius;
            m.generateOnTrigger   = generateOnTrigger;

            NJGEditorTools.RegisterUndo("NJG Zone Update", m);
        }

        /*if (NJGMapBase.instance != null)
         * {
         *      if (NJGMapBase.instance.atlas != null)
         *      {
         *              extraSpace = Mathf.Max(0f, extraSpace - 30f);
         *      }
         * }*/

        NJGEditorTools.DrawSeparator();

        GUILayout.BeginHorizontal();

        GUI.backgroundColor = Color.green;
        if (GUILayout.Button("Add New Zone"))
        {
            NJGMenu.AddMapZone();
        }
        GUI.backgroundColor = Color.white;

        GUI.backgroundColor = Color.red;
        if (GUILayout.Button("Delete Zone"))
        {
            Delete();
        }
        GUI.backgroundColor = Color.white;

        GUILayout.EndHorizontal();

        EditorGUILayout.Separator();
    }
Exemple #5
0
        /// <summary>
        /// Draw the inspector.
        /// </summary>

        public override void OnInspectorGUI()
        {
            EditorGUIUtility.labelWidth = 120f;
            m = target as Map;


            //if (GUI.changed)
            //    EditorUtility.SetDirty(mp);

            //PrefabType type = PrefabUtility.GetPrefabType(m.gameObject);

            if (m.material == null)
            {
                m.material = NJGEditorTools.GetMaterial(m, true);
            }

            NJGEditorTools.DrawEditMap();

            DrawNotFound();

            Map.Type mapType = (Map.Type)EditorGUILayout.EnumPopup("Map Type", m.mapType);
            if (m.mapType != mapType)
            {
                m.mapType = mapType;
                NJGEditorTools.RegisterUndo("Map Type", m);
            }

            targetObj = (Transform)EditorGUILayout.ObjectField(new GUIContent("Map Target", "The object that this map is going to follow"), m.target, typeof(Transform), true);

            if (m.target == null)
            {
                if (Application.isPlaying)
                {
                    EditorGUILayout.HelpBox("No target has been found, assign the tag to your target or drag it manually to the target field.", MessageType.Warning);
                }
                else
                {
                    EditorGUILayout.HelpBox("No target has been assigned, the target can be set automatically by using a tag or drag it manually to the target field.", MessageType.Warning);
                }
            }

            targetTag = EditorGUILayout.TagField(new GUIContent("Target Tag", "Assign a tag to auto search for the Map Target"), m.targetTag);

            GUILayout.BeginHorizontal();
            bool isVisible = EditorGUILayout.Toggle("Visible", m.isVisible, GUILayout.Width(140f));

            GUI.contentColor = isVisible ? Color.cyan : Color.gray;
            EditorGUILayout.LabelField("Toggle visbility.");
            GUI.contentColor = Color.white;
            GUILayout.EndHorizontal();

            GUILayout.BeginHorizontal();
            limitBounds      = EditorGUILayout.Toggle("Map Bounds", m.limitBounds, GUILayout.Width(140f));
            GUI.contentColor = limitBounds ? Color.cyan : Color.gray;
            EditorGUILayout.LabelField("Prevent map to display beyond borders.");
            GUI.contentColor = Color.white;
            GUILayout.EndHorizontal();

            GUILayout.BeginHorizontal();
            rotateWithPlayer = EditorGUILayout.Toggle("Lock Rotation", m.rotateWithPlayer, GUILayout.Width(140f));
            GUI.contentColor = rotateWithPlayer ? Color.cyan : Color.gray;
            EditorGUILayout.LabelField("Makes the map follow target rotation.");
            GUI.contentColor = Color.white;
            GUILayout.EndHorizontal();

            ShowSelector("Toggle Key", m.toggleKey, delegate(KeyCode k) { NJGMap.instance.keysInUse[0] = m.toggleKey = k; EditorUtility.SetDirty(m); });
            ShowSelector("Lock Key", m.lockKey, delegate(KeyCode k) { NJGMap.instance.keysInUse[1] = m.lockKey = k; EditorUtility.SetDirty(m); });



            /*mShader = (NJGMap.ShaderType)EditorGUILayout.EnumPopup("Shader Type", m.shaderType);
             * if (mShader == NJGMap.ShaderType.ColorMask)
             * {
             *  EditorGUILayout.HelpBox("Use the camera background color for masking", MessageType.Info);
             *  //m.colorMask = EditorGUILayout.ColorField("Color Mask", m.colorMask);
             * }
             *
             * if (m.shaderType != mShader)
             * {
             *  m.shaderType = mShader;
             *  Shader s = Shader.Find("Ninjutsu Games/Map TextureMask");
             *  switch (mShader)
             *  {
             *      case NJGMap.ShaderType.TextureMask:
             *          s = Shader.Find("Ninjutsu Games/Map TextureMask");
             *          NJGMap.instance.fow.enabled = false;
             *          break;
             *      case NJGMap.ShaderType.ColorMask:
             *          s = Shader.Find("Ninjutsu Games/Map ColorMask");
             *          m.material.SetColor("_MaskColor", NJGMap.instance.cameraBackgroundColor);
             *          NJGMap.instance.fow.enabled = false;
             *          break;
             *      case NJGMap.ShaderType.FOW:
             *          s = Shader.Find("Ninjutsu Games/Map FOW");
             *          NJGMap.instance.fow.enabled = true;
             *          break;
             *  }
             *  m.material.shader = s;
             *  if (m.mapRenderer != null)
             *  {
             *      m.mapRenderer.material.shader = s;
             *  }
             *  m.mapRenderer.enabled = false;
             *  m.mapRenderer.enabled = true;
             *  NJGEditorTools.RegisterUndo("Map Shader Type", m);
             * }*/



            bool shouldBeOn = NJGEditorTools.DrawHeader("UI Settings");

            if (shouldBeOn)
            {
                Color c = Color.grey;
                c.a = 0.5f;
                GUI.backgroundColor = c;
                NJGEditorTools.BeginContents();
                GUI.backgroundColor = Color.white;

                /*mPivot = (Map.Pivot)EditorGUILayout.EnumPopup("Alignment", m.pivot);
                 *              if (m.pivot != mPivot)
                 *              {
                 *                      m.pivot = mPivot;
                 *                      EditorUtility.SetDirty(m);
                 *                      m.UpdateAlignment();
                 *              }*/

                Sprite mMask = (Sprite)EditorGUILayout.ObjectField("Mask", m.maskTexture, typeof(Sprite), false);

                if (mMask != m.maskTexture)
                {
                    m.maskTexture = mMask;
                    m.material.SetTexture("_Mask", m.maskTexture.texture);
                    m.mapRenderer.material.SetTexture("_Mask", m.maskTexture.texture);
                    NJGEditorTools.RegisterUndo("Map Setting", m);
                }

                EditorGUILayout.Space();

                m.mapColor = EditorGUILayout.ColorField("Color", m.mapColor);

                if (mColor != m.mapColor)
                {
                    mColor = m.mapColor;
                    if (m.material != null)
                    {
                        m.material.color = m.mapColor;
                    }

                    m.mapRenderer.enabled = false;
                    m.mapRenderer.enabled = true;
                    NJGEditorTools.RegisterUndo("Map Setting", m);
                }

                //mMapScale = EditorGUILayout.Vector2Field("Dimensions", m.mapScale);

                /*if (m.mapScale != mMapScale)
                 * {
                 *      mMapScale.x = (int)mMapScale.x;
                 *      mMapScale.y = (int)mMapScale.y;
                 *      m.mapScale = mMapScale;
                 *      NJGEditorTools.RegisterUndo("Map Setting", m);
                 *      //m.UpdateAlignment();
                 * }*/

                /*mMargin = EditorGUILayout.Vector2Field("Margin", m.margin);
                 *
                 * if (m.margin != mMargin)
                 * {
                 *      m.margin.x = (int)mMargin.x;
                 *      m.margin.y = (int)mMargin.y;
                 *      NJGEditorTools.RegisterUndo("Map Setting", m);
                 *      m.UpdateAlignment();
                 * }*/

                GUILayout.BeginHorizontal();
                //EditorGUILayout.LabelField(new GUIContent("Culling Radius", "If icons get farther this radius they will dissapear"), GUILayout.Width(116f));
                //GUI.enabled = !m.calculateBorder;

                //mapBorderRadius = EditorGUILayout.FloatField(m.mapBorderRadius, GUILayout.Width(158f));

                //GUI.enabled = true;
                //calculateBorder = EditorGUILayout.Toggle(new GUIContent("Automatic", "Check this option if you want this value to be autmatically calculated at start."), m.calculateBorder);

                EditorGUIUtility.labelWidth = 120f;
                GUILayout.EndHorizontal();

                northIcon = (GameObject)EditorGUILayout.ObjectField(new GUIContent("North Icon", "Optional north icon. Will be automatically placed if its assigned."), m.northIcon, typeof(GameObject), true);
                //if (northIcon != null)
                //	northIconOffset = EditorGUILayout.IntField(new GUIContent("North Icon Offset", "Adjust the north icon distance from map border"), m.northIconOffset);
                NJGEditorTools.EndContents();
                EditorGUILayout.Separator();
            }
            shouldBeOn = NJGEditorTools.DrawHeader("Zoom Settings");
            if (shouldBeOn)
            {
                Color c = Color.grey;
                c.a = 0.5f;
                GUI.backgroundColor = c;
                NJGEditorTools.BeginContents();
                GUI.backgroundColor = Color.white;

                //EditorGUILayout.LabelField("Zoom Settings", EditorStyles.boldLabel);

                GUILayout.BeginHorizontal();
                mouseWheel       = EditorGUILayout.Toggle("Mouse Wheel", m.mouseWheelEnabled, GUILayout.Width(140f));
                GUI.contentColor = mouseWheel ? Color.cyan : Color.gray;
                EditorGUILayout.LabelField("Enable Mouse Wheel zoom.");
                GUI.contentColor = Color.white;
                GUILayout.EndHorizontal();

                GUILayout.BeginHorizontal();
                zoom = EditorGUILayout.Slider(new GUIContent("Zoom", "Current zoom level"), m.zoom, m.minZoom, m.maxZoom);
                if (m.zoom != zoom)
                {
                    if (!LeanTween.isTweening(m.gameObject))
                    {
                        m.zoom = Mathf.Clamp(zoom, m.minZoom, m.maxZoom);
                    }
                    NJGEditorTools.RegisterUndo("Map Setting", m);
                }
                GUILayout.EndHorizontal();

                zoomAmount = EditorGUILayout.Slider(new GUIContent("Amount", "How much should zoom in/out when zoom function is called."), m.zoomAmount, 0.01f, 5);

                GUILayout.BeginHorizontal();
                EditorGUILayout.LabelField(new GUIContent("Range", "Min and Max level of zoom"), GUILayout.Width(116.0f));
                minZoom = EditorGUILayout.FloatField(m.minZoom, GUILayout.Width(25.0f));
                EditorGUILayout.MinMaxSlider(ref minZoom, ref maxZoom, 1, 30);
                maxZoom = EditorGUILayout.FloatField(m.maxZoom, GUILayout.Width(25.0f));
                //minZoom = Mathf.Round(minZoom);
                //maxZoom = Mathf.Round(maxZoom);
                GUILayout.EndHorizontal();

                mEasing = (LeanTweenType)EditorGUILayout.EnumPopup("Easing", m.zoomEasing);
                if (m.zoomEasing != mEasing)
                {
                    m.zoomEasing = mEasing;
                    NJGEditorTools.RegisterUndo("Map Setting", m);
                }

                zoomSpeed = EditorGUILayout.Slider(new GUIContent("Speed", "Zoom animation speed"), m.zoomSpeed, 0f, 2f);

                ShowSelector("Zoom In Key", m.zoomInKey, delegate(KeyCode k) { NJGMap.instance.keysInUse[2] = m.zoomInKey = k; NJGEditorTools.RegisterUndo("Map Setting", m); });
                ShowSelector("Zoom Out Key", m.zoomOutKey, delegate(KeyCode k) { NJGMap.instance.keysInUse[3] = m.zoomOutKey = k; NJGEditorTools.RegisterUndo("Map Setting", m); });

                NJGEditorTools.EndContents();
                EditorGUILayout.Separator();
            }

            shouldBeOn = NJGEditorTools.DrawHeader("Panning Settings");
            if (shouldBeOn)
            {
                Color c = Color.grey;
                c.a = 0.5f;
                GUI.backgroundColor = c;
                NJGEditorTools.BeginContents();
                GUI.backgroundColor = Color.white;

                panning            = EditorGUILayout.Toggle("Enabled", m.panning, GUILayout.Width(140f));
                GUI.enabled        = panning;
                panningEase        = (LeanTweenType)EditorGUILayout.EnumPopup("Easing", m.panningEasing);
                panningSpeed       = EditorGUILayout.Slider(new GUIContent("Speed", "How fast the panning should move"), m.panningSpeed, 0, 5);
                panningSensitivity = EditorGUILayout.Slider(new GUIContent("Sensitivy", "How fast the panning should respond on mouse move"), m.panningSensitivity, 0.1f, 10f);
                panningMoveBack    = EditorGUILayout.Toggle(new GUIContent("Return on Release", "Moves back the panning to its original position"), m.panningMoveBack, GUILayout.Width(140f));
                GUI.enabled        = true;
                NJGEditorTools.EndContents();
                EditorGUILayout.Separator();
            }

            if (m.limitBounds != limitBounds ||
                m.rotateWithPlayer != rotateWithPlayer ||
                m.target != targetObj ||
                m.targetTag != targetTag ||
                m.minZoom != minZoom ||
                m.maxZoom != maxZoom ||
                m.zoomSpeed != zoomSpeed ||
                m.northIcon != northIcon ||
                //m.northIconOffset != northIconOffset ||
                m.mouseWheelEnabled != mouseWheel ||
                m.panning != panning ||
                m.panningSpeed != panningSpeed ||
                m.panningEasing != panningEase ||
                m.panningMoveBack != panningMoveBack ||
                m.panningSensitivity != panningSensitivity ||
                m.zoomAmount != zoomAmount ||
                m.isVisible != isVisible)
            {
                m.zoomAmount         = zoomAmount;
                m.panningSensitivity = panningSensitivity;
                m.panningMoveBack    = panningMoveBack;
                m.panning            = panning;
                m.panningSpeed       = panningSpeed;
                m.panningEasing      = panningEase;
                m.limitBounds        = limitBounds;
                m.rotateWithPlayer   = rotateWithPlayer;
                m.target             = targetObj;
                m.targetTag          = targetTag;
                m.minZoom            = minZoom;
                m.maxZoom            = maxZoom;
                m.zoomSpeed          = zoomSpeed;
                m.northIcon          = northIcon;
                //m.northIconOffset = northIconOffset;
                m.mouseWheelEnabled = mouseWheel;
                m.isVisible         = isVisible;
                NJGEditorTools.RegisterUndo("Changed Minimap Settings", m);
            }

            if (m.mapRenderer.texture == null && !Application.isPlaying)
            {
                MapRenderer.instance.cam.targetTexture = UnityEditor.AssetDatabase.LoadAssetAtPath("Assets/Ninjutsu Games/NJG MiniMap/Common/Materials/MapPreview.renderTexture", typeof(RenderTexture)) as RenderTexture;
                RenderTexture.active = MapRenderer.instance.cam.targetTexture;

                m.mapRenderer.texture = MapRenderer.instance.cam.targetTexture;

                MapRenderer.instance.cam.Render();
                MapRenderer.instance.ConfigCamera();
                MapRenderer.instance.cam.Render();
            }
            else if (Application.isPlaying && MapRenderer.instance.cam.targetTexture != null)
            {
                MapRenderer.instance.cam.targetTexture = RenderTexture.active = null;
            }

            if (!Application.isPlaying && Time.time > lastRender)
            {
                lastRender = Time.time + 1f;
                MapRenderer.instance.cam.Render();
                MapRenderer.instance.ConfigCamera();
                MapRenderer.instance.cam.Render();
                Debug.Log("ReRender");
            }

            if (GUI.changed)
            {
                EditorUtility.SetDirty(m);
            }
        }
Exemple #6
0
    /// <summary>
    /// Draw the inspector.
    /// </summary>

    public override void OnInspectorGUI()
    {
#if UNITY_4_3
        EditorGUIUtility.LookLikeControls(130f);
#else
        EditorGUIUtility.labelWidth = 130f;
#endif
        m = target as MapZone;
        if (renderLayers == null)
        {
            renderLayers = serializedObject.FindProperty("renderLayers");
        }

        NJGEditorTools.DrawEditMap();

        GUILayout.BeginHorizontal("AppToolbar");
        EditorGUILayout.LabelField(new GUIContent("Zone Name Preview", ""), GUILayout.Width(130f));
        GUI.contentColor = m.color;
        EditorGUILayout.LabelField(new GUIContent(m.zone, ""), EditorStyles.boldLabel);
        GUI.contentColor = Color.white;
        GUILayout.EndHorizontal();

        string level          = NJGEditorTools.DrawList("Level", NJGMap.instance.GetLevels(), m.level);
        string zone           = NJGEditorTools.DrawList("Zone", NJGMap.instance.GetZones(m.level), m.zone);
        string triggerTag     = EditorGUILayout.TagField("Trigger Tag", m.triggerTag);
        int    colliderRadius = (int)EditorGUILayout.Slider("Collider Radius", m.colliderRadius, 1, 1000);

        GUILayout.BeginHorizontal();
        bool generateOnTrigger = EditorGUILayout.Toggle("Render On Trigger", m.generateOnTrigger, GUILayout.Width(140f));
        GUI.contentColor = generateOnTrigger ? Color.cyan : Color.gray;
        EditorGUILayout.LabelField("Render the map when the target collides with this zone.");
        GUI.contentColor = Color.white;
        GUILayout.EndHorizontal();

        GUI.enabled = generateOnTrigger;

        GUILayout.BeginHorizontal();
        bool useZoneBounds = EditorGUILayout.Toggle("Use Zone Bounds", m.useZoneBounds, GUILayout.Width(140f));
        GUI.contentColor = useZoneBounds ? Color.cyan : Color.gray;
        EditorGUILayout.LabelField("Use this zone bounds to render the map.");
        GUI.contentColor = Color.white;
        GUILayout.EndHorizontal();

        EditorGUILayout.PropertyField(renderLayers, new GUIContent("Render Layers", "Which layers are going to be used for rendering."));

        GUILayout.BeginHorizontal();
        float zoom = EditorGUILayout.Slider(new GUIContent("Zoom", "Custom zoom level"), m.zoom, m.minZoom, m.maxZoom);
        if (m.zoom != zoom)
        {
            m.zoom = Mathf.Clamp(zoom, m.minZoom, m.maxZoom);
            NJGEditorTools.RegisterUndo("NJGZone Settings", m);
        }
        GUILayout.EndHorizontal();

        GUI.enabled = true;

        string name = "Zone - [" + MapZone.list.IndexOf(m) + "] " + m.zone;

        if (m.name != name ||
            m.level != level ||
            m.zone != zone ||
            m.triggerTag != triggerTag ||
            m.colliderRadius != colliderRadius ||
            m.generateOnTrigger != generateOnTrigger ||
            m.useZoneBounds != useZoneBounds)
        {
            m.name                = name;
            m.level               = level;
            m.zone                = zone;
            m.triggerTag          = triggerTag;
            m.colliderRadius      = colliderRadius;
            m.zoneCollider.radius = colliderRadius;
            m.generateOnTrigger   = generateOnTrigger;
            m.useZoneBounds       = useZoneBounds;

            NJGEditorTools.RegisterUndo("NJG Zone Update", m);
        }

        /*if (NJGMap.instance != null)
         * {
         *      if (NJGMap.instance.atlas != null)
         *      {
         *              extraSpace = Mathf.Max(0f, extraSpace - 30f);
         *      }
         * }*/

        EditorGUILayout.Separator();

        GUILayout.BeginHorizontal();

        GUI.backgroundColor = Color.green;
        if (GUILayout.Button("Add New Zone"))
        {
            NJGMenu.AddMapZone();
        }
        GUI.backgroundColor = Color.white;

        GUI.backgroundColor = Color.red;
        if (GUILayout.Button("Delete Zone"))
        {
            Delete();
        }
        GUI.backgroundColor = Color.white;

        GUILayout.EndHorizontal();

        EditorGUILayout.Separator();
    }