built-in functions - GUI
Note
Utility functions that manipulate GUI elements.
Functions
hsCanvasSetLayerShow
bool hsCanvasSetLayerShow(string layerName, bool show)
Shows the layer specified by name with true and hides it with false.
hsCanvasSuspendVisibleLayers
bool hsCanvasSuspendVisibleLayers()
Temporarily hides all currently visible layers. The display state can be restored by calling hsCanvasResumeVisibleLayers().
If already suspended, false
will be returned.
hsCanvasResumeVisibleLayers
bool hsCanvasResumeVisibleLayers()
Restores the layers that were hidden by hsCanvasSuspendVisibleLayers().
If not suspended, false
will be returned.
hsCanvasSetGUIShow
bool hsCanvasSetGUIShow(string layerName, string guiName, bool show)
Shows the Canvas specified by name with true and hides it with false.
hsCanvasSetGUIPos
bool hsCanvasSetGUIPos(string LayerName, bool IsPortrait, string GUIName, float X, float Y)
Sets the GUI element's position as the designated value.
hsCanvasGetGUIPos
bool hsCanvasGetGUIPos(string LayerName, bool IsPortrait, string GUIName, ref float X, ref float Y)
Gets the GUI element's position value.
hsCanvasSetGUIText
bool hsCanvasSetGUIText(string LayerName, string GUIName, string Text)
Sets a string to the Canvas specified by name.
About using commas (,) in text
We have confirmed that there is currently a bug where text display fails when commas (,) are used in the text.Please avoid using commas (,).
hsCanvasSetGUITextAlignment
bool hsCanvasSetGUITextAlignment(string LayerName, string GUIName, int Alignment)
Sets the text element's alignment.
hsCanvasSetGUITextOverflowWrap
bool hsCanvasSetGUITextOverflowWrap(string LayerName, string GUIName, bool OverflowWrap)
Sets the text element's auto overflow wrap setting.
hsCanvasSetGUITextURLClickable
bool hsCanvasSetGUITextURLClickable(string LayerName, string GUIName, bool URLClickable)
Gets the URL clickable state of the text element.
hsCanvasSetGUIImage
bool hsCanvasSetGUIImage(string layerName, string guiName, string path)
Sets an image on the Canvas specified by name.
hsCanvasResetToggleDefault
bool hsCanvasResetToggleDefault(string toggleName)
Resets the Toggle specified by name to its default state.
hsCanvasToggleChange
bool hsCanvasToggleChange(string toggleName)
Changes the state of a Toggle specified by name.
hsCanvasWorldToScreenPos
bool hsCanvasWorldToScreenPos(Vector3 WorldPos, ref float ScreenX, ref float ScreenY)
Converts the world position to screen position.
The resulting screen coordinates (ScreenX, ScreenY) are returned using a coordinate system with the top-left corner of the screen as the origin.
If the position is out of range, false
will be returned.
hsCanvasIsPortrait
bool hsCanvasIsPortrait()
Returns a bool value whether the screen is in portrait or landscape.
hsCanvasSetConfigClosedFlag
void hsCanvasSetConfigClosedFlag(bool Flag)
Toggles the show status of configuration window.
hsCanvasAddGUI
void hsCanvasAddGUI(string LayerName, bool IsPortrait, HSGUIModel Model)
Adds a GUI by searching a Layer by LayerName, with determining whether screen is in portrait or landscape by IsPortrait.
HelScript Example:
HSGUIModel model;
model = new HSGUIModel();
model.SetName("test_button");
model.SetShow(true);
model.SetType("button");
HS2DI size;
size = new HS2DI();
size.SetXY(100,100);
model.SetSize(size);
model.GetButtonModel().SetFileName("test_button.png");
hsCanvasAddGUI("HUD",false,model);
For details about HSGUIModel class, see HSGUIModel - Summary.
hsCanvasSetGUISize
bool hsCanvasSetGUISize(string LayerName, bool IsPortrait, string GUIName, float X, float Y)
Set the size of GUI.
hsCanvasGetGUISize
bool hsCanvasGetGUISize(string LayerName, bool IsPortrait, string GUIName, ref float X, ref float Y)
Get the size of GUI.
hsCanvasSetGUIAngle
bool hsCanvasSetGUIAngle(string LayerName, bool IsPortrait, string GUIName, float Angle)
Set the angle of GUI.
hsCanvasGetGUIAngle
bool hsCanvasGetGUIAngle(string LayerName, bool IsPortrait, string GUIName, ref float Angle)
Get the angle of GUI.
hsAddGUIImage
void hsAddGUIImage(string LayerName, bool IsPortrait,
string GUIName, string Platform, string Language, string Portrait, bool Show, int Z, int PosX, int PosY, int SizeX, int SizeY, float PivotX, float PivotY, string Anchor, bool RaycastTarget, float Angle,
string URI, int UVAreaX, int UVAreaY, int UVAreaWidth, int UVAreaHeight, int L, int R, int T, int B)
Adds a image type GUI by searching a Layer by LayerName, with determining whether screen is in portrait or landscape by IsPortrait.
hsAddGUIButton
void hsAddGUIButton(string LayerName, bool IsPortrait,
string GUIName, string Platform, string Language, string Portrait, bool Show, int Z, int PosX, int PosY, int SizeX, int SizeY, float PivotX, float PivotY, string Anchor, bool RaycastTarget, float Angle,
string FileName, string OnCursorFileName, string DownFileName, string ClickAreaFileName, int ClickAreaSizeX, int ClickAreaSizeY, float FlickCheckTime, float FlickLengthThreshold,
int UVAreaX, int UVAreaY, int UVAreaWidth, int UVAreaHeight, int L, int R, int T, int B)
Adds a button type GUI by searching a Layer by LayerName, with determining whether screen is in portrait or landscape by IsPortrait.
hsAddGUIText
hsAddGUIText(string LayerName, bool IsPortrait,
string GUIName, bool Show, int Z, int PosX, int PosY, int SizeX, int SizeY, float PivotX, float PivotY, string Anchor, bool RaycastTarget, float Angle,
string Text, string FontFamily, int FontSize, float ColorR, float ColorG, float ColorB, float ColorA, string Alignment, int CharaSpace, int LineSpace, bool IsOverflowWrap,
bool URLClickable, float URLColorR, float URLColorG, float URLColorB, float URLColorA
)
Adds a text type GUI by searching a Layer by LayerName, with determining whether screen is in portrait or landscape by IsPortrait.
Window System
Enable the creation of modal and modeless windows (hereafter collectively referred to as the window system).
- The window system operates independently of the layer system, using layer manipulation to achieve its functionality.
- The window system does not handle the creation or deletion of layers but controls the Z-value reconfiguration and visibility of layers.
- A modeless window can be added as a child to a modal window.
- In modal mode, only the modal window and its child modeless windows can receive input.
- Modeless windows can be set for layers that are not in a modal state.
- When pushing a modal window, there is an option to hide other modal windows (and their child modeless windows). These hidden windows are re-displayed upon popping.
- When a modal window is popped, its associated layer and child modeless windows are hidden.
- When there is a change in the top-level modal window (e.g., pushing a new modal window or popping the current top-level modal window), the newly activated modal window's Z-value is adjusted to bring it to the forefront.
API Functions
hsWindowModalPush(string layerName, bool hideOther);
If
hideOther = true
, other modal windows and their child modeless windows are temporarily hidden.
hsWindowModalPop();
The layer associated with the popped modal window becomes hidden.
All child modeless windows of the popped modal window are removed, and their layers are hidden.
If
hideOther = true
was set during the push, the temporarily hidden windows are restored to their previous visibility state.
hsWindowModalPopUntil(string layerName);
hsWindowModelessAdd(string layerName);
hsWindowModelessRemove(string layerName);
hsWindowModelessShowOnly(string layerName);
hsWindowModelessShowAll(bool isShown);
isShown
to specify the desired visibility state.
hsWindowClear();