↧
Answer by hbalint1
after you calculated all the 6 integers and need to change scene, you should put all the 6 integers in an array. You can get the max values of them with:...
View ArticleAnswer by Bunny83
IF you need to perform such an analyse on those values you really should replace them in an array or this is going to be messy. This would be one simplification: public int[] values = new int[6]; void...
View Article