27 lines
587 B
C#
27 lines
587 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class ManageButtonsSelectionWithIcon : MonoBehaviour {
|
|
|
|
public Transform IconImage;
|
|
public Transform StartButton;
|
|
public Transform OptionButton;
|
|
public Transform HighscoresButton;
|
|
public Transform QuitButton;
|
|
// Use this for initialization
|
|
void Start () {
|
|
|
|
IconImage = transform.Find("BikeIconImg");
|
|
//var btn = StartButton.GetComponent<Button>();
|
|
//btn.
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update () {
|
|
|
|
}
|
|
|
|
}
|