How might I go about creating a custom window similar to that of the Log window?
The window displaying the Log output have a pretty slick UI. Each line is selectable, and selecting the line updates the bottom section that contains details. The biggest hurdle seems to be creating...
View ArticleSelectionGrid texture stretching
Hello! I have a custom made texture for the buttons which is 12x12 pixels, and it's just a basic color with a 1px black border. Now if I apply this texture to the button via skins, the button looks...
View ArticleGUI draws only one window at a time
I've got two objects in my scene that each draw their own windows and have selectionGrids assigned within. The problem I am running across is that only one of the two objects will draw when the scene...
View ArticleMultiple images in GUI SelectionGrid
I have a table of images and each image has a series of changeable icons that lie on top of the image. There are three icons and one string (to indicate a total). I have attempted to place my icons...
View ArticleHow to insert an if statement for Selection Grid C#
Is there a way to insert an if statement for a Selection Grid? When I try to put in an if statement for this selection grid I get this error cannot implicitly convert type "int" to bool. using...
View ArticleSelection grid not working?
In the following code, it always prints 0 while I set it to 1, even when I press one of the buttons it does not change. Whats wrong with my code? var SelectedMPLevel :int = 1; var MpLevelImages...
View ArticleChanging a button texture in Selection Grid
Hi all! I have a bunch of buttons arranged in a selection grid. Can someone please tell me how I can access each of these buttons individually to change their textures?
View ArticleSelectiongrid formatting with guistyle.wordwrap
Im using a selection grid for a simple table that i need to display. the window theyre in is fixed size with a fixed horizontal internal window and a scrollable vertical one. When an entry is too long...
View ArticleHow to format Texture in selectionGrid?
Hi! I am coding the inventory for a schoolproject and I'm wondering what comes after Texture[]? With Strings it's: String[] = ["","","",""]; How do I format Texture[] so that I can add texture from...
View ArticleGUILayout.SelectionGrid with GUIStyle ignores textColor
![alt text][1] [1]: /storage/temp/6620-example.png Ok, I have a GUILayout.SelectionGrid going that seems to work fine except for one thing. It only ever uses the Normal state for textColor, regardless...
View ArticleSelection Gird Selected Item Style
Does anyone know what property of GUIStyle sets the selection grids currently selected item to a different color / image? Currently I have a selection grid that is using a custom GUIStyle, I want to...
View ArticleHow can I change Toolbar/SelectionGrid selected item's text color?
How can I change Toolbar/SelectionGrid selected item's text color? The first thing I did is to look in the GUISkin for those controls, but I saw that they aren't in the GUISkin. I suppose that their...
View ArticleSelectionGrid: Change the active background texture
Hi, Does anyone know how to change the background texture of an active selectiongrid? I have added a GUIStyle for it and changed a few background textures, like normal, hover, active and focused....
View ArticleGridSelection buttons in a foreach loop? C#
hi, I've been working on adding resolution buttons to my options menu and I've ran into a slight problem. I figured since the box is only 100 high it would force the buttons to grid up next to each...
View ArticleSelectiongrid too many action calls...
Hey there, I have a number of buttons built from a selection grid. What I want to do is when you click a button, it makes just one call/action. At present, it keeps calling and generating multiple...
View ArticleWeapon Selection Script
Hey, I need help with a feature I want to add to my game. I am trying to create a script that allows the player to choose the Weapon that he wants to spawn with. I have created two scripts that are...
View ArticleCustom elements in selectiongrid?
Hi guys. I want to make a listbox in my game with couple of custom labels and images in it as elements and I'm looking for a way to do that. Would it be somehow possible to set up custom GUIContent for...
View ArticleTooltips over SelectionGrid - how to get working?
I just wanted the tooltips to show upon the SelectionGrid elements. I tried to replicate this solution from here. http://forum.unity3d.com/threads/44525-Tooltips-for-a-SelectionGrid But the tooltips...
View ArticleAdd a button to toolbar/selection grid?
I am trying to make a "tab" view similar to the one in the internet browsers where you have a tab line and a "+" button to make a new button (and well, "-" to remove it), so I am trying to make a...
View ArticleStaggering buttons with GUI.SelectionGrid
I'm trying to offset buttons so they are layed out at a diagonal from each other. Each one corresponds to a different view of the screen; so, it would make sense to use `GUI.SelectionGrid` to have the...
View Article