如何在unity3d的2D游戏中绘制单色背景?

时间:2014-10-29 03:43:30

标签: c# unity3d monochrome

我正在用Unity3D创建一个2D游戏,但我对它很陌生。 我正在尝试绘制单色背景,前面有一些精灵。

我找到了这段代码:

using UnityEngine;
using System.Collections;

public class GUIRect : MonoBehaviour {

    public Color color;

    // Use this for initialization
    void Start () {

    }

    // Update is called once per frame
    void Update () {

    }
    private static Texture2D _staticRectTexture;
    private static GUIStyle _staticRectStyle;

    // Note that this function is only meant to be called from OnGUI() functions.
    public static void GUIDrawRect( Rect position, Color color )
    {
        if( _staticRectTexture == null )
        {
            _staticRectTexture = new Texture2D( 1, 1 );
        }

        if( _staticRectStyle == null )
        {
            _staticRectStyle = new GUIStyle();
        }

        _staticRectTexture.SetPixel( 0, 0, color );
        _staticRectTexture.Apply();

        _staticRectStyle.normal.background = _staticRectTexture;

        GUI.Box( position, GUIContent.none, _staticRectStyle );
    }

    void OnGUI() {
        GUIDrawRect(Rect.MinMaxRect(0, 0, Screen.width, Screen.height), color);
    }
}

我将它附加到一个空的游戏对象上,它运行良好,但我无法确定它与场景中其他精灵之间的z顺序。

这是正确的做法吗?如果是这样,我应该如何更改它的绘制顺序?

1 个答案:

答案 0 :(得分:1)

您使用的是Unity Pro吗?如果是这样,您可以使用后处理着色器。 http://docs.unity3d.com/Manual/script-GrayscaleEffect.html

如果您想拥有2d背景,请在启动Unity时使用2d设置。 然后你的背景可以是纹理精灵彼此分层。除了实际的GUI项目之外,没有理由在GUI上绘图。 http://answers.unity3d.com/questions/637876/how-to-make-background-for-2d-game.html