{ "root": { "type": "FrameLayout", "name": "inventory_root", "width": "match_parent", "height": "match_parent", "children": [ { "type": "TextButton", "name": "inventory_button", "x": 50.0, "y": 50.0, "width": 150.0, "height": 60.0, "text": "Inventory", "fontSize": 24, "fontPath": "resources/fonts/DroidSans.ttf", "textCentered": true, "color": [1.0, 1.0, 1.0, 1.0], "textures": { "normal": "resources/connecting.png", "hover": "resources/connecting.png", "pressed": "resources/connecting.png" } }, { "type": "FrameLayout", "name": "inventory_items_panel", "x": 50.0, "y": 150.0, "width": 250.0, "height": 300.0, "children": [ { "type": "StaticImage", "name": "panel_background", "width": 200, "height": 400, "texture": "resources/sand2.png" }, { "type": "TextView", "name": "inventory_items_text", "x": -100.0, "y": -100.0, "width": 250.0, "height": 300.0, "text": "Inventory (Empty)", "fontSize": 18, "fontPath": "resources/fonts/DroidSans.ttf", "centered": false, "color": [1.0, 1.0, 1.0, 1.0] }, { "type": "TextButton", "name": "close_inventory_button", "x": 165.0, "y": 0.0, "width": 40.0, "height": 40.0, "text": "X", "fontSize": 20, "fontPath": "resources/fonts/DroidSans.ttf", "textCentered": true, "color": [1.0, 1.0, 1.0, 1.0], "textures": { "normal": "resources/spark.png" } } ] } ] } }