April 30, 2020 - New Directions in Virtual Space
New Discord server! It's a chat group. It's like Slack! It's popular in game communities! It's optional!
Join here.
Iwan Traeger-Payne's new game Transfer - (currently Windows-only)
- Iwan demonstrates the game in our online exhibit video here at 1hr19min in
Stephanie Vasquez' project Shattered Perception
Christian Aufiero's game Don't Play This
Katherine Lousell's text adventure game Into The World, a game about social anxiety.
Go to GameObject menu and choose UI and then text
GameObject Menu > UI > Text
Try changing the x and y in the rectTransform to move your new default text around the screen.
Note that you can only see this text in the game window not in the Scene view.
Your font size can be as large as 25 FYI or else it disappears from view.
Note: In scripting, you must put using UnityEngine.UI;
at the top of your script!
We'll make a score:
public Text scoreText;
The text we will present is created by converting the score to text (from a number): scoreText.text = "Score: " + score.ToString();
public int score;
public Text scoreText;
void Start ()
{
score = 0;
scoreText.text = "Score: " + score.ToString();
}
void OnTriggerEnter (Collider col)
{
if (col.gameObject.tag == "prize") {
Destroy (col.transform.parent.gameObject);
score++;
scoreText.text = "Score: " + score.ToString();
}
}
Lee to build on LikeLike platform.
We will have 3 wings: flatgames, first world, and final world
We will have it virtually catered.