Exemple #1
0
        void Update()
        {
            if (Input.GetKeyDown(KeyCode.Q))
            {
                scrollPane.ScrollRight(-1, true);
            }

            if (Input.GetKeyDown(KeyCode.E))
            {
                scrollPane.ScrollRight(1, true);
            }
        }
Exemple #2
0
 public void Leftslide()
 {
     scrollPane.ScrollRight(-1, true);
 }