Blurred text when activating Canvas

2

Image as it should be:

ImageblurredafterfirstturningoffCanvas,andactivatinganotherCanvas:

IusetwoCanvasinthesameScene,oneforlogin,whichstartsenabled,anotherfortherecordthatstartsoff,andwhentheregisterbuttonisclicked,itactivatestheCanvasregistry.

voidTaskOnClick(){CanvasLogin.enabled=false;LoginValue.text="";
        PasswordValue.text = "";
        CanvasRegister.enabled = true;
    }

But after the record button is clicked, the Canvas is blurred, the setting of the two is identical, and one detail: any change in the fields / canvas is rendered correctly ...

Canvas is set to scale by screen size:

Note:

  

The problem is not that Canvas is blurred, rather it is erased   after activating by command.

    
asked by anonymous 08.02.2018 / 05:47

1 answer

0

I resolved by increasing the reference resolution, from 800x600 to 1920x1080.

But I can not tell the cause of the image to be blurred only when I activated Canvas by command, since it started normal.

    
10.02.2018 / 19:38