AutoResize Splash-Screen?

i have create splash screen image using (integrated with) plane, but its not autoresize in Android phone. can Any Master help me? to autoresize ? especially autoresize objek, like plane,3dmodel! thanks very much. C#

using UnityEngine;
using System.Collections;

public class Ganti : MonoBehaviour 


{
	public float timer = 5;

	void Update()
	{
		timer -=Time.deltaTime;
		if(timer > 0)
		{
			Debug.Log(timer);
		}
		else
		{
			Application.LoadLevel(1);
		}
	}

}

Are you using GUITexture, Sprite or else?

In the end, the solution is the same, use the Screen.width and Screen.height and apply to the dimension of the object.

Keep in mind that the texture will stretchso maybe you want to have two different textures, one for 5:4 ratio and one for 16:9 ratio.