![]() |
Adventure Creator
1.76.2
An adventure game toolkit for Unity, by Chris Burton, ICEBOX Studios 2013-2022
|
Public Member Functions | |
override void | Declare () |
override MenuElement | DuplicateSelf (bool fromEditor, bool ignoreUnityUI) |
Creates and returns a new MenuElement that has the same values as itself. More... | |
override void | LoadUnityUI (AC.Menu _menu, Canvas canvas, bool addEventListeners=true) |
Initialises the linked Unity UI GameObject. More... | |
override GameObject | GetObjectToSelect (int slotIndex=0) |
Gets the linked Unity UI GameObject associated with this element. More... | |
override RectTransform | GetRectTransform (int _slot) |
Gets the boundary of the element, or a slot within it. More... | |
override void | SetUIInteractableState (bool state) |
Sets the interactive state of any linked Unity UI gameobjects. More... | |
override void | ShowGUI (Menu menu) |
override bool | ReferencesObjectOrID (GameObject gameObject, int id) |
Checks if the Element makes reference to a particular GameObject More... | |
override int | GetSlotIndex (GameObject gameObject) |
Gets the slot index that reference a particular GameObject More... | |
override void | PreDisplay (int _slot, int languageNumber, bool isActive) |
Performs all calculations necessary to display the element. More... | |
override void | Display (GUIStyle _style, int _slot, float zoom, bool isActive) |
Draws the element using OnGUI. More... | |
void | MatchInteractions (InvInstance invInstance) |
Recalculates display for a particular inventory item. More... | |
void | MatchInteractions (List< AC.Button > buttons) |
Recalculates display for a particular set of Hotspot Buttons. More... | |
void | MatchUseInteraction (AC.Button button) |
Recalculates display for an "Use" Hotspot Button. More... | |
void | MatchInteraction (int _iconID) |
Recalculates display for a given cursor icon ID. More... | |
override void | Shift (AC_ShiftInventory shiftType, int amount) |
Shifts which slots are on display, if the number of slots the element has exceeds the number of slots it can show at once. More... | |
override bool | CanBeShifted (AC_ShiftInventory shiftType) |
Checks if the element's slots can be shifted in a particular direction. More... | |
override void | OnMenuTurnOn (Menu menu) |
Called whenever the Menu this is attached to is turned on. More... | |
override string | GetLabel (int slot, int languageNumber) |
Gets the display text of the element, or a slot within it. More... | |
override bool | IsSelectedByEventSystem (int slotIndex) |
Checks if the element is selected by Unity UI's EventSystem (if the Menu is Unity UI-based). More... | |
override bool | IsSelectableInteractable (int slotIndex) |
Checks if the element's linked Selectable is currently Interactable (if the Menu is Unity UI-based). More... | |
override void | RecalculateSize (MenuSource source) |
Recalculates the element's size. This should be called whenever a Menu's shape is changed. More... | |
override bool | ProcessClick (AC.Menu _menu, int _slot, MouseState _mouseState) |
Performs what should happen when the element is clicked on. More... | |
int | GetIconIDAtSlot (int _slot) |
Gets the ID of the cursor icon associated with a given slot More... | |
override string | GetHotspotLabelOverride (int _slot, int _language) |
Gets a string that overrides the default 'hotspot label'. More... | |
![]() | |
virtual void | Copy (MenuElement _element) |
Copies the values of another MenuElement onto itself. More... | |
virtual void | Initialise (AC.Menu _menu) |
Performs any initialisation that can only be done once the element has been instantiated at runtime. More... | |
virtual bool | ProcessContinuousClick (AC.Menu _menu, MouseState _mouseState) |
Performs what should happen when the element is clicked on continuously. More... | |
virtual void | SetSpeech (Speech _speech) |
Assigns the element to a specific Speech line. More... | |
virtual void | ClearSpeech () |
void | UpdateID (int[] idArray) |
Updates the ID number to something unique. More... | |
void | UpdateLabel (int languageNumber) |
void | ShowGUIStart (Menu menu) |
virtual bool | CheckConvertGlobalVariableToLocal (int oldGlobalID, int newLocalID) |
Checks if the Element makes references from a given global variable to a given local variable More... | |
virtual int | GetVariableReferences (int varID) |
Gets the number of references the MenuElement makes to a global variable More... | |
virtual int | UpdateVariableReferences (int oldVarID, int newVarID) |
Updates references the MenuElement makes to a global variable More... | |
virtual bool | ReferencesAsset (ActionListAsset actionListAsset) |
Checks if the Menu makes reference to a particular ActionList asset More... | |
virtual void | HideAllUISlots () |
virtual void | DrawOutline (bool isSelected, AC.Menu _menu) |
Draws an outline around the element. More... | |
Vector2[] | GetSlotCentres (AC.Menu _menu) |
Gets the element's slot centres, as an array of Vector2s. This is used when keyboard-navigating menus More... | |
Vector2 | GetSize () |
Gets the size of the whole element. More... | |
Vector2 | GetSizeFromCorner () |
Gets the Vector2 from the top-left corner of the parent Menu to the bottom-right corner of the element. More... | |
void | SetSize (Vector2 _size) |
Sets the size of an individual slot. More... | |
int | GetNumSlots () |
Gets the number of display slots the element has. This is not the maximum number of slots that can be shown by shifting - it is the number of slots that are shown at any one time. More... | |
Rect | GetSlotRectRelative (int _slot) |
Gets the boundary of a slot, as a proportion of the screen size. More... | |
int | GetFontSize () |
Gets the size of the font. More... | |
void | SetPosition (Vector2 _position) |
Sets the element's position. More... | |
void | SetRelativePosition (Vector2 _size) |
void | ResetDragOffset () |
void | SetDragOffset (Vector2 pos, Rect dragRect) |
Offsets an OnGUI MenuElement's position when dragged by a MenuDrag element. More... | |
Vector2 | GetDragStart () |
Gets the drag offset. More... | |
void | AutoSetVisibility () |
virtual AudioClip | GetHoverSound (int slot) |
Gets the hover sound for the element slot. More... | |
int | GetOffset () |
Gets the amount by which the slots have been offset, if the number that can be shown exceeds the number that can be display at once. More... | |
void | SetOffset (int value) |
Sets the amount by which the slots have been offset, if the number that can be shown exceeds the number that can be display at once. More... | |
string | GetVisibilitySaveData () |
override string | ToString () |
Public Attributes | |
UnityEngine.UI.Button | uiButton |
UISlot[] | uiSlots |
UIPointerState | uiPointerState = UIPointerState.PointerClick |
bool | fixedIcon = true |
int | maxSlots = 5 |
AC_DisplayType | displayType = AC_DisplayType.IconOnly |
TextAnchor | anchor |
TextEffects | textEffects |
float | outlineSize = 2f |
Color | effectColour = Color.black |
int | iconID |
UISelectableHideStyle | uiSelectableHideStyle = UISelectableHideStyle.DisableObject |
bool | overrideTexture |
Texture | activeTexture |
LinkUIGraphic | linkUIGraphic = LinkUIGraphic.ImageComponent |
![]() | |
int | ID |
string | title = "Element" |
Vector2 | slotSize |
AC_SizeType | sizeType |
AC_PositionType2 | positionType |
float | slotSpacing = 0f |
int | lineID = -1 |
string | alternativeInputButton = "" |
Font | font |
float | fontScaleFactor = 60f |
Color | fontColor = Color.white |
Color | fontHighlightColor = Color.white |
bool | isClickable |
ElementOrientation | orientation = ElementOrientation.Vertical |
int | gridWidth = 3 |
Texture2D | backgroundTexture |
bool | singleSlotBackgrounds = false |
Texture2D | highlightTexture |
AudioClip | hoverSound |
AudioClip | clickSound |
bool | changeCursor = false |
int | cursorID = 0 |
int | linkedUiID |
float | maxAutoWidthFactor = 0.5f |
Protected Member Functions | |
override void | ShowTextGUI (string apiPrefix) |
override void | ShowTextureGUI (string apiPrefix) |
override void | AutoSize () |
![]() | |
void | CreateUIEvent (UnityEngine.UI.Button uiButton, AC.Menu _menu, UIPointerState uiPointerState=UIPointerState.PointerClick, int _slotIndex=0, bool liveState=true) |
void | CreateHoverSoundHandler (Selectable selectable, AC.Menu _menu, int _slotIndex=0) |
virtual void | ProcessClickUI (AC.Menu _menu, int _slot, MouseState _mouseState) |
virtual string | GetLabelToTranslate () |
void | ClearCache () |
string | TranslateLabel (int languageNumber) |
void | EndGUI (string apiPrefix) |
void | ShowClipHelp () |
T | LinkedUiGUI< T > (T field, string label, MenuSource source, string tooltip="") |
UISlot[] | ResizeUISlots (UISlot[] uiSlots, int maxSlots) |
void | ChangeCursorGUI (Menu menu) |
void | LimitUISlotVisibility (UISlot[] uiSlots, int _numSlots, UIHideStyle uiHideStyle, Texture emptyTexture=null) |
void | LimitUISlotVisibility (UISlot[] uiSlots, int _numSlots, UISelectableHideStyle uiHideStyle) |
Rect | ZoomRect (Rect rect, float zoom) |
void | LimitOffset () |
void | Shift (AC_ShiftInventory shiftType, int maxSlots, int arraySize, int amount) |
void | SetAbsoluteSize (Vector2 _size) |
void | AutoSize (GUIContent content) |
void | LinkUIElement< T > (Canvas canvas, ref T existingField) |
void | UpdateUISelectable< T > (T field, UISelectableHideStyle uiSelectableHideStyle) |
void | UpdateUIElement< T > (T field) |
void | ClearSpriteCache (UISlot[] uiSlots) |
void | SetUISlotsInteractableState (UISlot[] uiSlots, bool state) |
Properties | |
override int | MaxSlotsForOffset [get] |
bool | IsDefaultIcon [get] |
![]() | |
virtual bool | IsVisible [get, set] |
virtual int | MaxSlotsForOffset [get] |
Menu | ParentMenu [get] |
Additional Inherited Members | |
![]() | |
bool | isVisible = true |
int | offset = 0 |
Menu | parentMenu |
Rect | relativeRect |
Vector2 | relativePosition |
int | numSlots |
A MenuElement that displays available interactions inside a Menu. It is used to allow the player to run Hotspot interactions from within a UI.
|
virtual |
Checks if the element's slots can be shifted in a particular direction.
shiftType | The direction to shift slots in (Left, Right) |
Reimplemented from AC.MenuElement.
|
virtual |
Initialises the MenuElement when it is created within MenuManager.
Reimplemented from AC.MenuElement.
|
virtual |
Draws the element using OnGUI.
_style | The GUIStyle to draw with |
_slot | The index number of the slot to display |
zoom | The zoom factor |
isActive | If True, then the element will be drawn as though highlighted |
Reimplemented from AC.MenuElement.
|
virtual |
Creates and returns a new MenuElement that has the same values as itself.
fromEditor | If True, the duplication was done within the Menu Manager and not as part of the gameplay initialisation. |
ignoreUnityUI | If True, variables associated with Unity UI will not be transferred |
Reimplemented from AC.MenuElement.
|
virtual |
Gets a string that overrides the default 'hotspot label'.
_slot | The index number of the slot to get an override label for |
_language | The index number of the language to display text in |
Reimplemented from AC.MenuElement.
int AC.MenuInteraction.GetIconIDAtSlot | ( | int | _slot | ) |
Gets the ID of the cursor icon associated with a given slot
_slot | The ID of the icon at this slot. If fixedIcon = true, this parameter is irrelevant |
|
virtual |
Gets the display text of the element, or a slot within it.
slot | The index number of the slot to get text for |
languageNumber | The index number of the language number to get the text in |
Reimplemented from AC.MenuElement.
|
virtual |
Gets the linked Unity UI GameObject associated with this element.
slotIndex | The slot index, if the element has multiple slots |
Reimplemented from AC.MenuElement.
|
virtual |
Gets the boundary of the element, or a slot within it.
_slot | The index number of the slot to get the boundary of |
Reimplemented from AC.MenuElement.
|
virtual |
Gets the slot index that reference a particular GameObject
gameObject | The GameObject to check for |
Reimplemented from AC.MenuElement.
|
virtual |
Checks if the element's linked Selectable is currently Interactable (if the Menu is Unity UI-based).
slotIndex | The element's slot index, if it has multiple slots |
Reimplemented from AC.MenuElement.
|
virtual |
Checks if the element is selected by Unity UI's EventSystem (if the Menu is Unity UI-based).
slotIndex | The element's slot index, if it has multiple slots |
Reimplemented from AC.MenuElement.
|
virtual |
Initialises the linked Unity UI GameObject.
_menu | The element's parent Menu |
canvas | The runtime Canvas associated with the Menu |
addEventListeners | If True, then event listeners should be added to the UI's Interactive component(s) |
Reimplemented from AC.MenuElement.
void AC.MenuInteraction.MatchInteraction | ( | int | _iconID | ) |
Recalculates display for a given cursor icon ID.
parentMenu | The Menu that the element is a part of |
_iconID | The ID number of the CursorIcon in CursorManager |
void AC.MenuInteraction.MatchInteractions | ( | InvInstance | invInstance | ) |
Recalculates display for a particular inventory item.
invInstance | The inventory item instance to recalculate the Menus's display for |
void AC.MenuInteraction.MatchInteractions | ( | List< AC.Button > | buttons | ) |
void AC.MenuInteraction.MatchUseInteraction | ( | AC.Button | button | ) |
|
virtual |
Called whenever the Menu this is attached to is turned on.
menu | The Menu this is attached to |
Reimplemented from AC.MenuElement.
|
virtual |
Performs all calculations necessary to display the element.
_slot | The index number of the slot to display |
languageNumber | The index number of the language to display text in |
isActive | If True, then the element will be drawn as though highlighted |
Reimplemented from AC.MenuElement.
|
virtual |
Performs what should happen when the element is clicked on.
_menu | The element's parent Menu |
_slot | The index number of the slot that was clicked on |
_mouseState | The state of the mouse button |
Reimplemented from AC.MenuElement.
|
virtual |
Recalculates the element's size. This should be called whenever a Menu's shape is changed.
source | How the parent Menu is displayed (AdventureCreator, UnityUiPrefab, UnityUiInScene) |
Reimplemented from AC.MenuElement.
|
virtual |
Checks if the Element makes reference to a particular GameObject
gameObject | The GameObject to check for |
id | The GameObject's associated ConstantID value |
Reimplemented from AC.MenuElement.
|
virtual |
Sets the interactive state of any linked Unity UI gameobjects.
state | If True, linked UI gameobjects will be made interactive. If False, they will be made non-interactive |
Reimplemented from AC.MenuElement.
|
virtual |
Shifts which slots are on display, if the number of slots the element has exceeds the number of slots it can show at once.
shiftType | The direction to shift slots in (Left, Right) |
amount | The amount to shift slots by |
Reimplemented from AC.MenuElement.
Texture AC.MenuInteraction.activeTexture |
The element's texture (OnGUI only)
TextAnchor AC.MenuInteraction.anchor |
The text alignment
AC_DisplayType AC.MenuInteraction.displayType = AC_DisplayType.IconOnly |
How interactions are displayed (IconOnly, TextOnly, IconAndText)
Color AC.MenuInteraction.effectColour = Color.black |
The outline colour
bool AC.MenuInteraction.fixedIcon = true |
If True, then only one icon will be shown
int AC.MenuInteraction.iconID |
The ID number of the interaction's associated CursorIcon, if fixedIcon = true
LinkUIGraphic AC.MenuInteraction.linkUIGraphic = LinkUIGraphic.ImageComponent |
What Image component the Element's Graphics should be linked to (ImageComponent, ButtonTargetGraphic)
int AC.MenuInteraction.maxSlots = 5 |
The maximum number of icons that can be shown at once, if fixedIcon = false
float AC.MenuInteraction.outlineSize = 2f |
The outline thickness, if textEffects != TextEffects.None
bool AC.MenuInteraction.overrideTexture |
If True, the element's texture can be set independently of the associated interaction icon set within the Cursor Manager (OnGUI only)
TextEffects AC.MenuInteraction.textEffects |
The special FX applied to the text (None, Outline, Shadow, OutlineAndShadow)
UnityEngine.UI.Button AC.MenuInteraction.uiButton |
The Unity UI Button this is linked to (Unity UI Menus only)
UIPointerState AC.MenuInteraction.uiPointerState = UIPointerState.PointerClick |
What pointer state registers as a 'click' for Unity UI Menus (PointerClick, PointerDown, PointerEnter)
UISelectableHideStyle AC.MenuInteraction.uiSelectableHideStyle = UISelectableHideStyle.DisableObject |
The method by which this element is hidden from view when made invisible (DisableObject, DisableInteractability)
UISlot [] AC.MenuInteraction.uiSlots |
A List of UISlot classes that reference the linked Unity UI GameObjects (Unity UI Menus only)
|
get |
If using Choose Interaction Then Hotspot mode, and default interactions are enabled, then this is True if the active Hotspot's first-enabled Use interaction uses this icon