Hey
Currently in the process of making my entire preset range editable from ingame. (Skyrim)
So far I have figured out the following Additions to the GUI.
Code:
float SpinTest <
string UIName="Spin Test";
string UIWidget="Spinner";
float UIMin=0.0;
float UIMax=5.0;
> = {1.0};
Code:
float3 Colortest <
string UIName="Colortest";
string UIWidget="Color";
float UIMin=0.0;
float UIMax=1.0;
> = {0.0, 0.0, 0.0};
Code:
bool boolTest <
string UIName = "boolTest";
> = {true};
Is there a list over all the possible way to add items to the ingame GUI. Mainly I am wondering if it is possible to make sections in the list for better overview?