Page 405 - MDP2022-3
P. 405

else
                                            {
                                                    if  (y  !=  0)
                                                    {
                                                            y  -=  5;
                                                            transform.rotation  =  Quaternion.Euler(0,  y,  0);
                                                            time  =  0.0000001f;
                                                    }
                                                    else
                                                    {
                                                            backGround.SetActive(true);
                                                            if  (!sound)
                                                            {
                                                                    audio.Play();
                                                                    sound  =  true;
                                                            }
                                                            if  (time3  >  0)
                                                            {
                                                                    time3  -=  Time.deltaTime;
                                                                    transform.rotation  =  Quaternion.Euler(0,  0,  0);
                                                            }
                                                            else
                                                            {
                                                                    transform.rotation  =  Quaternion.Euler(0,  0,  0);
                                                                    if  (GameManager.instance.moveCards)
                                                                    {
                                                                            audio.Play();
                                                                            text.text  =  "카드를  골라서  재단에  올려봐";
                                                                            look  =  true;


                                                                    }
                                                            }

                                                    }
   400   401   402   403   404   405   406   407   408   409   410