mirror of
https://github.com/imperialsushi/gutterball-3.git
synced 2025-06-15 05:07:42 +00:00

Strike it big with amazing bowling action! Everything that made Gutterball 3D a hit is here - incredible 3D graphics, cool ball-rolling controls, hilarious characters - and more! Eight all-new alleys are waxed and ready for you to toss your choice of 85 unique bowling balls. As you play, earn points and cash and unlock alleys and balls. Even customize a ball with your own settings and images! Addictive bowling fun that will bowl you over!
31 lines
606 B
C#
31 lines
606 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class ToggleText : MonoBehaviour
|
|
{
|
|
public string key;
|
|
public Text switchText;
|
|
|
|
// Use this for initialization
|
|
void Start ()
|
|
{
|
|
GetComponent<Toggle>().isOn = (PlayerPrefs.GetInt(key) == 0);
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update ()
|
|
{
|
|
if (GetComponent<Toggle>().isOn)
|
|
{
|
|
switchText.text = "on";
|
|
switchText.color = Color.green;
|
|
}
|
|
else
|
|
{
|
|
switchText.text = "off";
|
|
switchText.color = Color.red;
|
|
}
|
|
}
|
|
}
|