Hi!
i am starting with Unity and i get this wird (i think) error:
I have made this texture:
1024x1024
But in the game look not very well:
I have made a small script and i have set it to the main camera to set the AntiAliasing in 8, and works, but only in 3d objects.
using UnityEngine;
using System.Collections;
public class AntiAliasing : MonoBehaviour
{
public int AntiAliasingValue = 0;
void Start()
{
QualitySettings.antiAliasing = AntiAliasingValue;
}
}
Whats im doing wrong?
Thans a lot!