|
Hey, everyone, I'm trying to make a rts type game where the player can go to the sidebar and click on the building that he wants to make his active one. If he selects this, and clicks on a collider, he will make the building he selected. However, when I use a for loop to make the buttons(the buildings are in an array), there is nothing. How to do this? Here is my code. Thanks in advance!! :)
(comments are locked)
|
|
:) a little typing mistake. Your for loop never runs because your loop condition is always false. Change this
into this
An alternative would be, what Dave suggested, to use a Toolbar(horizontal) or a SelectionGrid(vertical or grid). I think you would need to setup a seperate string array for Toolbar or Selectiongrid, so I guess your current solution would be the best (since you have it already).
(comments are locked)
|
|
Take a look at GUI(Layout) Toolbar and SelectionGrid which does most of this for you
(comments are locked)
|
