![]() |
Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
|
Protected Member Functions | |
| MapConfiguration | GetMapConfig () |
| Get map config. | |
| bool | IsOpen () |
| Check if the map is opened. | |
| int | GetMapSizeX () |
| Get map sizeX in meters. | |
| int | GetMapSizeY () |
| Get map sizeY in meters. | |
| float | GetMaxZoom () |
| Get maximal zoom. | |
| float | GetMinZoom () |
| Get minimal zoom. | |
| float | GetTargetZoomPPU () |
| Get target zoom in the form of PixelPerUnit value, which is different from current zoom if interpolation is ongoing. | |
| bool | IsZooming () |
| Get whether zoom interpolation is ongoing. | |
| vector | GetCurrentPan () |
| Get current DPIScaled pan offsets. | |
| CanvasWidget | GetMapWidget () |
| Get map widget. | |
| Widget | GetMapMenuRoot () |
| Get map menu root widget. | |
| void | SetMapWidget (Widget mapW) |
| Set map widget. | |
| MapItem | GetHoveredItem () |
| Get hovered item. | |
| void | GetMapVisibleFrame (out vector min, out vector max) |
| Return visible frame in the form of min and max point, used to ignore update of f.e. icons when they are not visible. | |
| float | GetCurrentZoom () |
| void | GetMapCursorWorldPosition (out float worldX, out float worldY) |
| void | GetMapCenterWorldPosition (out float worldX, out float worldY) |
| SCR_MapModuleBase | GetMapModule (typename moduleType) |
| SCR_MapUIBaseComponent | GetMapUIComponent (typename componentType) |
| void | OpenMap (MapConfiguration config) |
| void | CloseMap () |
| Close the map. | |
| void | OnMapOpen (MapConfiguration config) |
| void | OnMapClose () |
| Map close event. | |
| void | OnLifeStateChanged (ECharacterLifeState previousLifeState, ECharacterLifeState newLifeState) |
| void | OnPlayerDeleted (int playerId, IEntity player) |
| void | OnUserSettingsChanged () |
| Game event. | |
| void | OnWindowResized (int width, int height, bool windowed) |
| Game event. | |
| MapConfiguration | SetupMapConfig (EMapEntityMode mapMode, ResourceName configPath, Widget rootWidget) |
| void | SetupLayersAndProps (inout MapConfiguration configObject, SCR_MapConfig mapCfg) |
| void | SetupDescriptorTypes (SCR_MapDescriptorDefaults descriptorDefaultsConfig) |
| void | CenterMap () |
| Center the map. | |
| void | ZoomOut () |
| Set minimal zoom and center the map. | |
| void | ShowScriptDebug () |
| Show/hide debug info table. | |
| void | SetZoom (float targetPPU, bool instant=false) |
| void | ZoomSmooth (float targetPixPerUnit, float zoomTime=0.25, bool zoomToCenter=true, bool reinitZoom=false) |
| void | ZoomPanSmooth (float targetPixPerUnit, float worldX, float worldY, float zoomTime=0.25) |
| void | SetPan (float x, float y, bool isPanEnd=true, bool center=true, bool updatingPan=false) |
| void | Pan (EMapPanMode panMode, float panValue=0) |
| void | PanSmooth (float panX, float panY, float panTime=0.25) |
| void | InvokeOnSelect (vector selectionPos) |
| void | SelectItem (MapItem item) |
| void | HoverItem (MapItem item) |
| void | ClearSelection () |
| Clear selected items. | |
| void | ClearHover () |
| Clear hover state. | |
| void | WorldToScreen (float worldX, float worldY, out int screenPosX, out int screenPosY, bool withPan=false) |
| Use canvas world coords to get DPIscaled screen coords, flips the y-axis. | |
| void | WorldToScreenCustom (float worldX, float worldY, out int screenPosX, out int screenPosY, float targetPPU, bool withPan=false) |
| Use canvas world coords and defined pixel per unit to get DPIscaled screen coords, flips the y-axis. | |
| void | ScreenToWorld (int screenPosX, int screenPosY, out float worldX, out float worldY) |
| Use scaled screen coords to get canvas world coords, flips the y-axis. | |
| void | ScreenToWorldNoFlip (int screenPosX, int screenPosY, out float worldX, out float worldY) |
| Use scaled screen coords to get canvas world coords without flipping the y-axis. | |
| bool | FitPanBounds (inout float panX, inout float panY, bool center) |
| bool | UpdateZoomBounds () |
| void | AssignViewLayer (bool isInit) |
| Checks whether layer should change based on current zoom. | |
| void | InitLayers (MapConfiguration mapConfig) |
| Initialize layers from config. | |
| void | InitDescriptors (int layerID, MapLayer layer, SCR_LayerConfiguration layerConfig, MapConfiguration mapConfig) |
| void | ActivateModules (array< ref SCR_MapModuleBase > modules) |
| void | ActivateComponents (array< ref SCR_MapUIBaseComponent > components) |
| void | ActivateOtherComponents (EMapOtherComponents componentFlags) |
| void | DeactivateModule (SCR_MapModuleBase module) |
| Deactivate module, removing it from loadable list until config is reloaded. | |
| void | DeactivateComponent (SCR_MapUIBaseComponent component) |
| Deactivate UI component, removing it from loadable list until config is reloaded. | |
| void | Cleanup () |
| Map close cleanup. | |
| void | UpdateViewPort () |
| Updates view port. | |
| void | PanUpdate (float timeSlice) |
| void | ZoomUpdate (float timeSlice) |
| void | UpdateDebug () |
| Update map debug table. | |
| void | UpdateMap (float timeSlice) |
| override void | EOnFrame (IEntity owner, float timeSlice) |
| override void | EOnInit (IEntity owner) |
| void | SCR_MapEntity (IEntitySource src, IEntity parent) |
| void | ~SCR_MapEntity () |
Static Protected Member Functions | |
| static ScriptInvokerBase< MapConfigurationInvoker > | GetOnMapInit () |
| Get on map init invoker, caution: called during the first frame of opening the map when widget related stuff is not initialized yet. | |
| static ScriptInvokerBase< MapConfigurationInvoker > | GetOnMapOpen () |
| Get on map open invoker. | |
| static ScriptInvokerBase< MapConfigurationInvoker > | GetOnMapOpenComplete () |
| Get on map open complete invoker. | |
| static ScriptInvokerBase< MapConfigurationInvoker > | GetOnMapClose () |
| Get on map close invoker. | |
| static ScriptInvokerBase< ScriptInvokerFloat2Bool > | GetOnMapPan () |
| Get on map pan invoker. | |
| static ScriptInvokerFloat2 | GetOnMapPanEnd () |
| Get on map pan interpolated end invoker. | |
| static ScriptInvokerFloat | GetOnMapZoom () |
| Get on map zoom invoker. | |
| static ScriptInvokerFloat | GetOnMapZoomEnd () |
| Get on map zoom interpolated end invoker. | |
| static ScriptInvokerBase< MapItemInvoker > | GetOnSelectionChanged () |
| Get on selection changed invoker. | |
| static ScriptInvokerVector | GetOnSelection () |
| Get on selection invoker. | |
| static ScriptInvokerBase< MapItemInvoker > | GetOnHoverItem () |
| Get on hover item invoker. | |
| static ScriptInvokerBase< MapItemInvoker > | GetOnHoverEnd () |
| Get on hover end invoker. | |
| static ScriptInvokerInt | GetOnLayerChanged () |
| Get on layer changed invoker. | |
| static SCR_MapEntity | GetMapInstance () |
| Get map entity instance. | |
| static string | GetGridLabel (vector pos, int resMin=2, int resMax=4, string delimiter=" ") |
| static void | GetGridPos (vector pos, out int gridX, out int gridZ, int resMin=2, int resMax=4) |
Protected Attributes | |
| int | m_iDelayCounter = FRAME_DELAY |
| bool | m_bIsOpen |
| bool | m_bDoReload |
| bool | m_bDoUpdate |
| bool | m_bIsDebugMode |
| int | m_iMapSizeX |
| int | m_iMapSizeY |
| int | m_iMapOffsetX |
| int | m_iMapOffsetY |
| vector | m_vVisibleFrameMin |
| vector | m_vVisibleFrameMax |
| EMapEntityMode | m_eLastMapMode |
| Widget | m_wMapRoot |
| CanvasWidget | m_MapWidget |
| WorkspaceWidget | m_Workspace |
| ref MapConfiguration | m_ActiveMapCfg |
| MapItem | m_HoveredMapItem |
| bool | m_bIsZoomInterp |
| float | m_fZoomPPU = 1 |
| float | m_fStartPPU |
| float | m_fTargetPPU = 1 |
| float | m_fZoomTimeModif |
| float | m_fZoomSlice |
| float | m_fMinZoom = 1 |
| float | m_fMaxZoom |
| bool | m_bIsPanInterp |
| int | m_iPanX = 0 |
| int | m_iPanY = 0 |
| int | m_aStartPan [2] |
| int | m_aTargetPan [2] |
| float | m_fPanTimeModif |
| float | m_fPanSlice |
| ref array< ref SCR_MapModuleBase > | m_aActiveModules = {} |
| ref array< ref SCR_MapModuleBase > | m_aLoadedModules = {} |
| ref array< ref SCR_MapUIBaseComponent > | m_aActiveComponents = {} |
| ref array< ref SCR_MapUIBaseComponent > | m_aLoadedComponents = {} |
Definition at line 17 of file SCR_MapEntity.c.
|
inlineprotected |
Definition at line 1546 of file SCR_MapEntity.c.
|
inlineprotected |
Definition at line 1559 of file SCR_MapEntity.c.
|
inlineprotected |
Activate UI components
| modules | is an array of module typenames |
Definition at line 1272 of file SCR_MapEntity.c.
|
inlineprotected |
Activate modules
| modules | is an array of modules to activate |
Definition at line 1223 of file SCR_MapEntity.c.
|
inlineprotected |
Activate other components
| modules | is an array of component names |
Definition at line 1322 of file SCR_MapEntity.c.
|
inlineprotected |
Checks whether layer should change based on current zoom.
Definition at line 1092 of file SCR_MapEntity.c.
|
inlineprotected |
Center the map.
get current size of map(includes zoom level) in screen space
Definition at line 585 of file SCR_MapEntity.c.
|
inlineprotected |
Map close cleanup.
Definition at line 1354 of file SCR_MapEntity.c.
|
inlineprotected |
Clear hover state.
Definition at line 882 of file SCR_MapEntity.c.
|
inlineprotected |
Clear selected items.
Definition at line 872 of file SCR_MapEntity.c.
|
inlineprotected |
Close the map.
Definition at line 324 of file SCR_MapEntity.c.
|
inlineprotected |
Deactivate UI component, removing it from loadable list until config is reloaded.
Definition at line 1346 of file SCR_MapEntity.c.
|
inlineprotected |
Deactivate module, removing it from loadable list until config is reloaded.
Definition at line 1338 of file SCR_MapEntity.c.
Definition at line 1495 of file SCR_MapEntity.c.
|
inlineprotected |
Definition at line 1524 of file SCR_MapEntity.c.
|
inlineprotected |
Adjust provided pan values by pan bounds conditions
| panX | is UNSCALED pan offset x in px |
| panY | is UNSCALED pan offset y in px |
Definition at line 1012 of file SCR_MapEntity.c.
|
inlineprotected |
Get current DPIScaled pan offsets.
Definition at line 172 of file SCR_MapEntity.c.
|
inlineprotected |
Get how much pixels per unit(meter) are currently visible on screen. If this value is 1 and resolution is 1920x1080, then 1920 units(meters) of map will be visible
Definition at line 216 of file SCR_MapEntity.c.
|
inlinestaticprotected |
Get grid coordinates for given position.
| pos | World position |
| resMin | Minimum grid resolution as 10^x, e.g., 2 = 100, 3 = 1000, etc. |
| resMax | Maximum grid resolution as 10^x |
| delimiter | String added between horizontal and vertical coordinate |
Definition at line 973 of file SCR_MapEntity.c.
|
inlinestaticprotected |
Get grid coordinates for given position.
| pos | World position |
| resMin | Minimum grid resolution as 10^x, e.g., 2 = 100, 3 = 1000, etc. |
| resMax | Maximum grid resolution as 10^x |
Definition at line 987 of file SCR_MapEntity.c.
|
inlineprotected |
Get hovered item.
Definition at line 200 of file SCR_MapEntity.c.
|
inlineprotected |
Get map center of screen world position
| worldX | is x coord |
| worldY | is y coord |
Definition at line 234 of file SCR_MapEntity.c.
|
inlineprotected |
Get map config.
Definition at line 116 of file SCR_MapEntity.c.
|
inlineprotected |
Get map cursor world position
| worldX | is x coord |
| worldY | is y coord |
Definition at line 225 of file SCR_MapEntity.c.
|
inlinestaticprotected |
Get map entity instance.
Definition at line 112 of file SCR_MapEntity.c.
|
inlineprotected |
Get map menu root widget.
Definition at line 186 of file SCR_MapEntity.c.
|
inlineprotected |
Get a specific map module
| moduleType | is a typename of the wanted module |
Definition at line 246 of file SCR_MapEntity.c.
|
inlineprotected |
Get map sizeX in meters.
Definition at line 130 of file SCR_MapEntity.c.
|
inlineprotected |
Get map sizeY in meters.
Definition at line 137 of file SCR_MapEntity.c.
|
inlineprotected |
Get a specific map UI component
| moduleType | is a typename of the wanted UI component |
Definition at line 261 of file SCR_MapEntity.c.
Return visible frame in the form of min and max point, used to ignore update of f.e. icons when they are not visible.
Definition at line 207 of file SCR_MapEntity.c.
|
inlineprotected |
Get map widget.
Definition at line 179 of file SCR_MapEntity.c.
|
inlineprotected |
Get maximal zoom.
Definition at line 144 of file SCR_MapEntity.c.
|
inlineprotected |
Get minimal zoom.
Definition at line 151 of file SCR_MapEntity.c.
|
inlinestaticprotected |
Get on hover end invoker.
Definition at line 108 of file SCR_MapEntity.c.
|
inlinestaticprotected |
Get on hover item invoker.
Definition at line 106 of file SCR_MapEntity.c.
|
inlinestaticprotected |
Get on layer changed invoker.
Definition at line 110 of file SCR_MapEntity.c.
|
inlinestaticprotected |
Get on map close invoker.
Definition at line 92 of file SCR_MapEntity.c.
|
inlinestaticprotected |
Get on map init invoker, caution: called during the first frame of opening the map when widget related stuff is not initialized yet.
Definition at line 86 of file SCR_MapEntity.c.
|
inlinestaticprotected |
Get on map open invoker.
Definition at line 88 of file SCR_MapEntity.c.
|
inlinestaticprotected |
Get on map open complete invoker.
Definition at line 90 of file SCR_MapEntity.c.
|
inlinestaticprotected |
Get on map pan invoker.
Definition at line 94 of file SCR_MapEntity.c.
|
inlinestaticprotected |
Get on map pan interpolated end invoker.
Definition at line 96 of file SCR_MapEntity.c.
|
inlinestaticprotected |
Get on map zoom invoker.
Definition at line 98 of file SCR_MapEntity.c.
|
inlinestaticprotected |
Get on map zoom interpolated end invoker.
Definition at line 100 of file SCR_MapEntity.c.
|
inlinestaticprotected |
Get on selection invoker.
Definition at line 104 of file SCR_MapEntity.c.
|
inlinestaticprotected |
Get on selection changed invoker.
Definition at line 102 of file SCR_MapEntity.c.
|
inlineprotected |
Get target zoom in the form of PixelPerUnit value, which is different from current zoom if interpolation is ongoing.
Definition at line 158 of file SCR_MapEntity.c.
|
inlineprotected |
Set hover mode to target MapItem
| MapItem | is the target |
Definition at line 862 of file SCR_MapEntity.c.
|
inlineprotected |
Init visibility and default config values for descriptors based on type
| layerID | is id of the layer |
| layer | is the map layer |
| layerConfig | is the config for the layer |
Definition at line 1152 of file SCR_MapEntity.c.
|
inlineprotected |
Initialize layers from config.
Definition at line 1117 of file SCR_MapEntity.c.
|
inlineprotected |
Triggers OnSelection event
| selectionPos | the selection (click) position in scaled screen coordinates |
Definition at line 844 of file SCR_MapEntity.c.
|
inlineprotected |
Check if the map is opened.
Definition at line 123 of file SCR_MapEntity.c.
|
inlineprotected |
Get whether zoom interpolation is ongoing.
Definition at line 165 of file SCR_MapEntity.c.
|
inlineprotected |
SCR_CharacterControllerComponent event Called only in case of a fullscreen map
Definition at line 409 of file SCR_MapEntity.c.
|
inlineprotected |
Map close event.
Definition at line 376 of file SCR_MapEntity.c.
|
inlineprotected |
Map open event
| config | is the configuration object |
Definition at line 341 of file SCR_MapEntity.c.
SCR_BaseGameMode event Called only in case of a fullscreen map
Definition at line 429 of file SCR_MapEntity.c.
|
inlineprotected |
Game event.
Definition at line 440 of file SCR_MapEntity.c.
Game event.
Definition at line 457 of file SCR_MapEntity.c.
|
inlineprotected |
Open the map
| config | is the configuration object |
Definition at line 277 of file SCR_MapEntity.c.
|
inlineprotected |
Pan the map by px amount
| panMode | is mode of panning |
| panValue | is amount of pixels to pan |
Definition at line 771 of file SCR_MapEntity.c.
Interpolated pan
| panX | is x target screen coordinate in DPIScaled px |
| panY | is y target screen coordinate in DPIScaled px |
| panTime | is interpolation duration |
Definition at line 819 of file SCR_MapEntity.c.
|
inlineprotected |
Interpolated pan update
| timeSlice | is frame timeSlice |
Definition at line 1395 of file SCR_MapEntity.c.
|
inlineprotected |
Use scaled screen coords to get canvas world coords, flips the y-axis.
Definition at line 945 of file SCR_MapEntity.c.
|
inlineprotected |
Use scaled screen coords to get canvas world coords without flipping the y-axis.
Definition at line 958 of file SCR_MapEntity.c.
|
inlineprotected |
Select target MapItem
| MapItem | is the target |
Definition at line 851 of file SCR_MapEntity.c.
|
inlineprotected |
Set map widget.
Definition at line 193 of file SCR_MapEntity.c.
|
inlineprotected |
Pan the map to target position, all of scripted panning is called through this
| x | is horizontal screen UNSCALED coordinate |
| y | is vertical screen UNSCALED coordinate |
| center | determines whether the map should center to the supplied coordinates |
| IsPanEnd | determines whether this is also the end of panning operation, resetting the start pos for drag pannning |
Definition at line 729 of file SCR_MapEntity.c.
|
inlineprotected |
Map properties config setup, matches imageset indices defined in map layout (MapWidget) to descriptor types
| configObject | is a config object created for map init |
| mapCfg | is the provided map config |
Definition at line 561 of file SCR_MapEntity.c.
|
inlineprotected |
Layer and map properties config setup, if missing creates a default one
| configObject | is a config object created for map init |
| mapCfg | is the provided map config |
Definition at line 513 of file SCR_MapEntity.c.
|
inlineprotected |
Prepare MapConfiguration object from provided map config
| mapMode | is the last map mode opened, if its the same we do not need to setup new config |
| configPath | is the path to the map config resource |
| rootWidget | is the root widget of the layout used to display map |
Definition at line 469 of file SCR_MapEntity.c.
Set zoom value
| targetPPU | is wanted pixel per unit (zoom) value |
| instant | determines whether it is a one time zoom or an animation |
Definition at line 619 of file SCR_MapEntity.c.
|
inlineprotected |
Show/hide debug info table.
Definition at line 610 of file SCR_MapEntity.c.
|
inlineprotected |
Update map debug table.
Definition at line 1437 of file SCR_MapEntity.c.
|
inlineprotected |
Handle update of modules, components and pan/zoom interpolation
| timeSlice | is frame timeSlice |
Definition at line 1471 of file SCR_MapEntity.c.
|
inlineprotected |
Updates view port.
Definition at line 1377 of file SCR_MapEntity.c.
|
inlineprotected |
|
inlineprotected |
Use canvas world coords to get DPIscaled screen coords, flips the y-axis.
Definition at line 899 of file SCR_MapEntity.c.
|
inlineprotected |
Use canvas world coords and defined pixel per unit to get DPIscaled screen coords, flips the y-axis.
Definition at line 923 of file SCR_MapEntity.c.
|
inlineprotected |
Set minimal zoom and center the map.
Definition at line 602 of file SCR_MapEntity.c.
|
inlineprotected |
Interpolated zoom with custom pan target for simultaneous use of zoom+pan
| targetPixPerUnit | is the target pixel per unit value |
| worldX | is world pos X panning target |
| worldY | is world pos Y panning target |
| zoomTime | is interpolation duration |
Definition at line 694 of file SCR_MapEntity.c.
|
inlineprotected |
Interpolated zoom
| targetPixPerUnit | is the target pixel per unit value |
| zoomTime | is interpolation duration |
| zoomToCenter | determines whether zoom target is screen center (true) or relative position of mouse within window (false) |
| reinitZoom | determines whether the condition blocking zooming to the same PPU value is ignored (f.e. when changing resolution) |
Definition at line 645 of file SCR_MapEntity.c.
|
inlineprotected |
Interpolated zoom update
| timeSlice | is frame timeSlice |
Definition at line 1417 of file SCR_MapEntity.c.
|
protected |
Definition at line 64 of file SCR_MapEntity.c.
|
protected |
Definition at line 62 of file SCR_MapEntity.c.
|
protected |
Definition at line 37 of file SCR_MapEntity.c.
|
protected |
Definition at line 65 of file SCR_MapEntity.c.
|
protected |
Definition at line 63 of file SCR_MapEntity.c.
|
protected |
Definition at line 56 of file SCR_MapEntity.c.
|
protected |
Definition at line 57 of file SCR_MapEntity.c.
|
protected |
Definition at line 24 of file SCR_MapEntity.c.
|
protected |
Definition at line 25 of file SCR_MapEntity.c.
|
protected |
Definition at line 26 of file SCR_MapEntity.c.
|
protected |
Definition at line 23 of file SCR_MapEntity.c.
|
protected |
Definition at line 53 of file SCR_MapEntity.c.
|
protected |
Definition at line 43 of file SCR_MapEntity.c.
|
protected |
Definition at line 33 of file SCR_MapEntity.c.
|
protected |
Definition at line 50 of file SCR_MapEntity.c.
|
protected |
Definition at line 49 of file SCR_MapEntity.c.
|
protected |
Definition at line 59 of file SCR_MapEntity.c.
|
protected |
Definition at line 58 of file SCR_MapEntity.c.
|
protected |
Definition at line 45 of file SCR_MapEntity.c.
|
protected |
Definition at line 46 of file SCR_MapEntity.c.
|
protected |
Definition at line 44 of file SCR_MapEntity.c.
|
protected |
Definition at line 48 of file SCR_MapEntity.c.
|
protected |
Definition at line 47 of file SCR_MapEntity.c.
|
protected |
Definition at line 40 of file SCR_MapEntity.c.
|
protected |
Definition at line 20 of file SCR_MapEntity.c.
|
protected |
Definition at line 29 of file SCR_MapEntity.c.
|
protected |
Definition at line 30 of file SCR_MapEntity.c.
|
protected |
Definition at line 27 of file SCR_MapEntity.c.
|
protected |
Definition at line 28 of file SCR_MapEntity.c.
|
protected |
Definition at line 54 of file SCR_MapEntity.c.
|
protected |
Definition at line 55 of file SCR_MapEntity.c.
|
protected |
Definition at line 35 of file SCR_MapEntity.c.
|
protected |
Definition at line 32 of file SCR_MapEntity.c.
|
protected |
Definition at line 31 of file SCR_MapEntity.c.
|
protected |
Definition at line 34 of file SCR_MapEntity.c.
|
protected |
Definition at line 36 of file SCR_MapEntity.c.
|
staticprotected |
Definition at line 38 of file SCR_MapEntity.c.
|
staticprotected |
Definition at line 80 of file SCR_MapEntity.c.
|
staticprotected |
Definition at line 79 of file SCR_MapEntity.c.
|
staticprotected |
Definition at line 77 of file SCR_MapEntity.c.
|
staticprotected |
Definition at line 71 of file SCR_MapEntity.c.
|
staticprotected |
Definition at line 68 of file SCR_MapEntity.c.
|
staticprotected |
Definition at line 69 of file SCR_MapEntity.c.
|
staticprotected |
Definition at line 70 of file SCR_MapEntity.c.
|
staticprotected |
Definition at line 72 of file SCR_MapEntity.c.
|
staticprotected |
Definition at line 73 of file SCR_MapEntity.c.
|
staticprotected |
Definition at line 74 of file SCR_MapEntity.c.
|
staticprotected |
Definition at line 75 of file SCR_MapEntity.c.
|
staticprotected |
Definition at line 76 of file SCR_MapEntity.c.
|
staticprotected |
Definition at line 78 of file SCR_MapEntity.c.