public override void OnPress()
    {
        ZoomInScript.ZoomInTo(transform.position.WithZ(-10.0f), 2.0f);

        isPresent = !isPresent;

        if (isPresent)
        {
            ColorManager.ToStandard();
            OnPresent();
        }
        else
        {
            ColorManager.ToGreyScale();
            OnPast();
        }
    }
예제 #2
0
 public override void OnPress()
 {
     ZoomInScript.ZoomInTo(transform.position.WithZ(-10.0f), zoomSize);
     coll.enabled = false;
 }