public void Start()
 {
     nRS = FindObjectOfType <NumberReaderScript>();
     rBN = FindObjectOfType <ReadBetNums>();
     zPG = FindObjectOfType <ZoomPanelGestures>();
     cB  = FindObjectOfType <ClickButton>();
 }
 private void Start()
 {
     audioSource = GetComponent<AudioSource>();
     nRS = FindObjectOfType<NumberReaderScript>();
     sB = FindObjectOfType<SelectButton>();
     bGI = FindObjectOfType<BoardGestureInput>();
 }
Beispiel #3
0
 private void Start()
 {
     rWS        = FindObjectOfType <RouletteWheelSpin>();
     wP         = FindObjectOfType <WinningsPayout>();
     nRS        = FindObjectOfType <NumberReaderScript>();
     sBI        = FindObjectOfType <SaveBetInfo>();
     dD         = FindObjectOfType <DontDestroy>();
     winner     = false;
     soundCount = 3;
 }
Beispiel #4
0
    //Gets the int to be read out to the user
    public void ReadBalance()
    {
        nRS = FindObjectOfType <NumberReaderScript>();
        string temp = playerCoins.text;

        temp = Regex.Replace(temp, "Coins: ", "");

        playerCoins.GetComponentInParent <Button>().Select();

        int i = int.Parse(temp);

        nRS.SetNumber(i);

        nRS.ReadNumber();
    }
Beispiel #5
0
 void Start()
 {
     nRS = FindObjectOfType <NumberReaderScript>();
 }
Beispiel #6
0
    private void Start()
    {
        nRS = FindObjectOfType <NumberReaderScript>();

        CallTimer();
    }