Hello and thanks for reading this.
As some of you may know I'm develoing [S.E.G.O.] mod, and for a few days now I am trying to add stockpile resources to the top bar. I have managed to add the resource icon to the bar but I don't have a clue about adding the numbers that shows how many resources you have or the description that pops up when you hover the mouse.
I created a resource called "test", this resource is acumulative and has the same properties that minerals or energy, then i added this on interface\resources.gfx:
spriteType = {
name = "GFX_resource_test"
textureFile = "gfx/interface/icons/resources/test.dds"
}
and this on interface\main.gui
iconType = {
name = "test_icon"
spriteType = "GFX_resource_test" #this is the name the icon has on resources.gfx
position = { x= 1080 y = 8 }
}
instantTextBoxType={ #This is suposed to be the part with the text that shows the resources you have
name = "test_text"
position = { x= 1113 y= 9 }
font = "cg_16b"
maxWidth = 65
maxHeight = 16
}
Can anyone help me complete this? it's driving me crazy.
As some of you may know I'm develoing [S.E.G.O.] mod, and for a few days now I am trying to add stockpile resources to the top bar. I have managed to add the resource icon to the bar but I don't have a clue about adding the numbers that shows how many resources you have or the description that pops up when you hover the mouse.
I created a resource called "test", this resource is acumulative and has the same properties that minerals or energy, then i added this on interface\resources.gfx:
spriteType = {
name = "GFX_resource_test"
textureFile = "gfx/interface/icons/resources/test.dds"
}
and this on interface\main.gui
iconType = {
name = "test_icon"
spriteType = "GFX_resource_test" #this is the name the icon has on resources.gfx
position = { x= 1080 y = 8 }
}
instantTextBoxType={ #This is suposed to be the part with the text that shows the resources you have
name = "test_text"
position = { x= 1113 y= 9 }
font = "cg_16b"
maxWidth = 65
maxHeight = 16
}
Can anyone help me complete this? it's driving me crazy.