![]() |
Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
|
Static Protected Member Functions | |
| static bool | OnlyStaticCallback (notnull IEntity entity) |
| static IEntity | GetMainParent (IEntity entity, bool self=false) |
| static void | SetHierarchyTransform (notnull IEntity entity, vector newTransform[4]) |
| static void | SetHierarchyChildTransform (notnull IEntity entity, vector oldTransform[4], vector newTransform[4], bool recursive=true) |
| static bool | GetRelativeLocalTransform (notnull IEntity owner, notnull IEntity member, out vector relativeTransform[4]) |
| static RplComponent | GetEntityRplComponent (notnull IEntity entity) |
| static void | QuickSortEntitiesByDistanceToPoint (notnull inout array< IEntity > arr, vector pos, int low, int high) |
| static int | Partition (notnull inout array< IEntity > arr, vector pos, int low, int high) |
| static RplId | EntityToRplId (IEntity ent) |
| static IEntity | RplIdToEntity (RplId id) |
Definition at line 1 of file SCR_EntityHelper.c.
Definition at line 507 of file SCR_EntityHelper.c.
|
inlinestaticprotected |
Atempts to find RplComponent in the fastest possible way
| [in] | entity | from which RplComponent should be retrived |
Definition at line 451 of file SCR_EntityHelper.c.
Returns the main parent of the input entity
| [in] | entity | Entity to get the main parent from |
| [in] | self | return entity if there is no parent, false otherwise |
Definition at line 325 of file SCR_EntityHelper.c.
|
inlinestaticprotected |
Get relative transform from member to owner local space.
| [in] | owner | Starting entity. |
| [in] | member | Ending entity. |
| [out] | relativeTransform | transformation from member to owner local space |
Definition at line 398 of file SCR_EntityHelper.c.
| [in] | entity |
Definition at line 311 of file SCR_EntityHelper.c.
|
inlinestaticprotected |
Method used for sorting part of the provided array of entities based on their distance to the specified position
| [in,out] | arr | array whose content will be sorted |
| [in] | pos | world space position to which distance will be measured |
| [in] | low | index from the array that will be used as a starting point for sorting |
| [in] | high | index from the array that will be used as the end point for sorting |
Definition at line 488 of file SCR_EntityHelper.c.
|
inlinestaticprotected |
QuickSort algorithm for ordering an array of Entities by distance to the specified world position
| [in,out] | arr | array whose content will be sorted |
| [in] | pos | world space position to which distance will be measured |
| [in] | low | index from the array that will be used as a starting point for sorting |
| [in] | high | index from the array that will be used as the end point for sorting |
Definition at line 470 of file SCR_EntityHelper.c.
Definition at line 521 of file SCR_EntityHelper.c.
|
inlinestaticprotected |
Set child transformation
| [in] | entity | |
| [in] | oldTransform | |
| [in] | newTransform | |
| [in] | recursive |
Definition at line 366 of file SCR_EntityHelper.c.
|
inlinestaticprotected |
Set transform for the whole hierarchy
| [in] | entity | |
| [in] | newTransform |
Definition at line 345 of file SCR_EntityHelper.c.