Topic: Custom Win Screen

https://static.wikia.nocookie.net/stree … 0116193135

I tried making a custom Win Screen prefab for making win screen like the image link, but every time a character wins, Unity freezes and I need a lot of help...

Share

Thumbs up Thumbs down

Re: Custom Win Screen

Probably the last time I'm asking for help, then my project will go on by myself.

Share

Thumbs up Thumbs down

Re: Custom Win Screen

Your image doesn't load for me. I use imgur for posting images.
When exactly should this custom win screen be triggered?

Share

Thumbs up Thumbs down

Re: Custom Win Screen

The image is basically the Ryu's win phrase 'You must defeat Sheng Long to stand a chance" and in testing purposes, I changed the VersusScreenAfterBattle in BattleGUI (Template) to my custom WinQuoteScreen but after the two/three rounds, it just freezes and I'm forced to restart Unity

Share

Thumbs up Thumbs down

Re: Custom Win Screen

I hope this can help you, I wrote a script for Random Win Quotes and I put it in my VersusScreenAfterBattle prefab

public Text mytext = null;


mytext.text = Ayane_Texts[Random.Range(0, Ayane_Texts.Length)];

string[] Ayane_Texts = new string[] { "That was almost too easy.\n", "Stay down! I don’t enjoy being a bully.", "This is why archers always kick serious butt!", "Sorry if I grabbed your boobs by accident!", "Archery wins everytime!", "Why is it fun fighting in a fake style?", "You can’t beat me with just speed alone!", "We’ll meet again! I’m counting on it!" };

Share

Thumbs up Thumbs down