How can i make such color effects …
1 Answer
1Hello, I guess you could do it with sprite animations but you’ll have a limited amount of animations and they will be always the same. If you want to do it procedurally, you should look into fluid simulation.
Actually found the solution to it by myself. for(int i = 0; i < languageButtons.Length; i++) { int x = i; languageButtons*.onClick.AddListener(delegate { ButtonLanguageSelected(x); });* } //All the listeners will share different values given to the method
– WhoElseUsesMyName534