Adds some example components, game objects and the tools and scripts to utilize them.

This commit is contained in:
Areloch 2016-05-15 16:24:47 -05:00
parent 7bf49f0670
commit 6fe0b1789d
32 changed files with 1812 additions and 0 deletions

View file

@ -0,0 +1,45 @@
%guiContent = new GuiControl(SuperTooltipDlg) {
canSaveDynamicFields = "0";
Profile = "GuiTransparentProfileModeless";
class = "SuperTooltip";
HorizSizing = "right";
VertSizing = "bottom";
position = "0 0";
Extent = "640 480";
MinExtent = "8 2";
canSave = "1";
Visible = "1";
hovertime = "1000";
new GuiControl(SuperTooltipWindow) {
canSaveDynamicFields = "0";
Profile = "EditorTextEditBoldModeless";
HorizSizing = "right";
VertSizing = "bottom";
position = "216 160";
Extent = "221 134";
MinExtent = "8 2";
canSave = "1";
Visible = "1";
hovertime = "1000";
internalName = "tooltipWindow";
new GuiMLTextCtrl(SuperTooltipMLText) {
canSaveDynamicFields = "0";
Profile = "EditorMLTextProfileModeless";
HorizSizing = "right";
VertSizing = "bottom";
position = "5 5";
Extent = "210 14";
MinExtent = "8 2";
canSave = "1";
Visible = "1";
hovertime = "1000";
lineSpacing = "2";
allowColorChars = "0";
maxChars = "-1";
internalName = "tooltipMLText";
};
};
};