Arma Reforger Script API
Loading...
Searching...
No Matches
Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
SCR_MenuEditorComponent Interface Reference
Inheritance diagram for SCR_MenuEditorComponent:
[legend]

Public Member Functions

void SetVisible (bool visible, bool instant=false)
 Set visibility of elements which can be hidden.
 
void ToggleVisible ()
 Toggle visibility of elements which can be hidden.
 
bool IsVisible ()
 Check if elements which can be hidden are visible.
 
EditorMenuBase GetMenu ()
 Get associtaed menu.
 
SCR_MenuEditorUIComponent GetMenuComponent ()
 Get component with menu configuration.
 
ScriptInvoker GetOnVisibilityChange ()
 Get ebent called when editor menu visibility changes.
 
- Public Member Functions inherited from SCR_BaseEditorComponent
sealed void OnInitBase ()
 
sealed void OnDeleteBase ()
 
sealed void OnRequestBase (bool isOpen)
 
sealed void OnOpenedBase ()
 
sealed void OnClosedBase ()
 
sealed void OnPreActivateBase ()
 
sealed void OnActivateBase ()
 
sealed bool OnActivateAsyncBase (int attempt)
 
sealed void OnPostActivateBase ()
 
sealed void OnDeactivateBase ()
 
sealed void OnPostDeactivateBase ()
 
sealed bool OnDeactivateAsyncBase (int attempt)
 
sealed void OnEffectBase (SCR_BaseEditorEffect effect)
 
SCR_EditorManagerEntity GetManager ()
 Get editor manager this component belongs to.
 
SCR_BaseEditorComponent FindEditorComponent (TypeName type, bool showError=false, bool modeFirst=false)
 Get the editor manager to which this component belongs.
 
EntityComponentPrefabData GetEditorComponentData ()
 Get prefab data of this component.
 
bool IsRemoved ()
 Check if the component is being deleted.
 
void ResetEditorComponent ()
 Reset values controlled by the component.
 
ScriptInvoker GetOnEffect ()
 Get event called when an effect is activated.
 
void InitServer ()
 
void InitOwner ()
 
override void OnPostInit (IEntity owner)
 
void SCR_BaseEditorComponent (IEntityComponentSource src, IEntity ent, IEntity parent)
 
void ~SCR_BaseEditorComponent ()
 

Protected Member Functions

void OnModeChange ()
 
override void EOnEditorPostActivate ()
 When the component is activated, but after EOnEditorActivate() function was called in all components.
 
override void EOnEditorDeactivate ()
 When the component is deactivated.
 
override void EOnEditorClose ()
 When the editor is closed.
 
override void EOnEditorActivate ()
 When the component is activated.
 
override void EOnEditorInit ()
 When the entity is created.
 
- Protected Member Functions inherited from SCR_BaseEditorComponent
bool IsOnEditorManager ()
 
bool IsOwner ()
 
bool IsProxy ()
 
bool IsMaster ()
 
bool IsAdmin ()
 
SCR_BaseEditorComponent GetParentComponent ()
 
void SetParentComponent (SCR_BaseEditorComponent parent)
 
void SendNotification (ENotification notificationID, int selfID=0, int targetID=0, vector position=vector.Zero)
 
void EOnEditorDelete ()
 When the entity is destroyed.
 
void EOnEditorRequest (bool isOpen)
 When opening/closing request is sent to server.
 
void EOnEditorOpen ()
 When the editor is opened.
 
void EOnEditorPreActivate ()
 Before the component is activated.
 
bool EOnEditorActivateAsync (int attempt)
 When the component is activated.
 
bool EOnEditorDeactivateAsync (int attempt)
 When the component is deactivated.
 
void EOnEditorPostDeactivate ()
 When the component is deactivated, but after the next mode is activated.
 
void EOnEditorDebug (array< string > debugTexts)
 Every frame while the editor is opened and debug menu is shown.
 
void EOnEffect (SCR_BaseEditorEffect effect)
 When an effect is created in reaction an an event.
 
void EOnEditorInitServer ()
 When the entity is created (called on server)
 
void EOnEditorDeleteServer ()
 When the entity is destroyed (called on server)
 
void EOnEditorOpenServer ()
 When the editor is opened (called on server)
 
void EOnEditorOpenServerCallback ()
 When the editor is opened (called on server after async loading finished on client)
 
void EOnEditorCloseServer ()
 When the editor is closed (called on server)
 
void EOnEditorCloseServerCallback ()
 When the editor is closed (called on server after async loading finished on client)
 
void EOnEditorActivateServer ()
 When the component is activated (called on server)
 
void EOnEditorDeactivateServer ()
 When the component is deactivated (called on server)
 

Protected Attributes

SCR_MenuEditorUIComponent m_EditorMenuComponent
 
- Protected Attributes inherited from SCR_BaseEditorComponent
SCR_EditorBaseEntity m_Owner
 
SCR_EditorManagerEntity m_Manager
 
SCR_BaseEditorComponent m_Parent
 
RplComponent m_RplComponent
 

Additional Inherited Members

- Static Public Member Functions inherited from SCR_BaseEditorComponent
static Managed GetInstance (TypeName type, bool showError=false, bool modeFirst=false)
 Get the local instance of a component attached on editor manager (SCR_EditorManagerEntity).
 
static Managed GetInstance (SCR_EditorBaseEntity editorManager, TypeName type, bool showError=false)
 Get instance of a component attached on specific editor manager / mode (SCR_EditorBaseEntity).
 
static int GetAllInstances (TypeName type, out notnull array< Managed > outComponents)
 Get component instances on editor manager (SCR_EditorBaseEntity) and all its modes (SCR_EditorModeEntity).
 

Member Function Documentation

◆ EOnEditorActivate()

override void SCR_MenuEditorComponent.EOnEditorActivate ( )
protected

When the component is activated.

Implements SCR_BaseEditorComponent.

◆ EOnEditorClose()

override void SCR_MenuEditorComponent.EOnEditorClose ( )
protected

When the editor is closed.

Implements SCR_BaseEditorComponent.

◆ EOnEditorDeactivate()

override void SCR_MenuEditorComponent.EOnEditorDeactivate ( )
protected

When the component is deactivated.

Implements SCR_BaseEditorComponent.

◆ EOnEditorInit()

override void SCR_MenuEditorComponent.EOnEditorInit ( )
protected

When the entity is created.

Implements SCR_BaseEditorComponent.

◆ EOnEditorPostActivate()

override void SCR_MenuEditorComponent.EOnEditorPostActivate ( )
protected

When the component is activated, but after EOnEditorActivate() function was called in all components.

Implements SCR_BaseEditorComponent.

◆ GetMenu()

EditorMenuBase SCR_MenuEditorComponent.GetMenu ( )

Get associtaed menu.

Returns
Menu

◆ GetMenuComponent()

SCR_MenuEditorUIComponent SCR_MenuEditorComponent.GetMenuComponent ( )

Get component with menu configuration.

Returns
Menu config component

◆ GetOnVisibilityChange()

ScriptInvoker SCR_MenuEditorComponent.GetOnVisibilityChange ( )

Get ebent called when editor menu visibility changes.

Returns
Script invoker

◆ IsVisible()

bool SCR_MenuEditorComponent.IsVisible ( )

Check if elements which can be hidden are visible.

Returns
True when visible

◆ OnModeChange()

void SCR_MenuEditorComponent.OnModeChange ( )
protected

◆ SetVisible()

void SCR_MenuEditorComponent.SetVisible ( bool  visible,
bool  instant = false 
)

Set visibility of elements which can be hidden.

Parameters
visibleTrue when visible
instantTrue to set visibility instantly, false to animate it

◆ ToggleVisible()

void SCR_MenuEditorComponent.ToggleVisible ( )

Toggle visibility of elements which can be hidden.

Member Data Documentation

◆ m_EditorMenuComponent

SCR_MenuEditorUIComponent SCR_MenuEditorComponent.m_EditorMenuComponent
protected

The documentation for this interface was generated from the following file: