Select Git revision
ScrollParameterAnimation.meta
-
John Schihada authoredJohn Schihada authored
ScrollClickedScript.cs 363 B
using REST_JSON_API;
using UnityEngine;
using UnityEngine.EventSystems;
public class ScrollClickedScript : MonoBehaviour, IPointerDownHandler
{
public Scroll scroll;
public GameObject DetailScreen;
public void OnPointerDown(PointerEventData eventData)
{
this.DetailScreen.GetComponent<ScrollDetails>().SetScroll(this.scroll);
}
}