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 another script?
Here is part of the code:
var selGridInt : int = 0;
var window : Rect = Rect (1400,20,300,100);
var ludoTex : Texture[];
function OnGUI()
{
if (displayInventory)
{
window = GUI.Window (0, window, InventoryWindow, "Inventory");
}
}
function InventoryWindow()
{
selGridInt = GUI.SelectionGrid (Rect (50, 50, 400, 100), selGridInt, ludoTex, 4);
}
↧