![]() |
Dayz Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
|
Data Structures | |
| class | Attribute |
| class | IEntity |
| Internal ancestor of all Entity implementations. More... | |
| class | ParamEnum |
Enumerations | |
| enum | EntityEvent { TOUCH , VISIBLE , NOTVISIBLE , FRAME , POSTFRAME , INIT , JOINTBREAK , SIMULATE , POSTSIMULATE , PHYSICSMOVE , CONTACT , EXTRA , ANIMEVENT , SOUNDEVENT , PHYSICSSTEADY , USER , ENTER , LEAVE , ALL } |
| Entity events for event-mask, or throwing event from code. More... | |
| enum | EntityFlags { VISIBLE , SOLID , TRIGGER , TOUCHTRIGGERS , SYNCHRONIZATION_DIRTY , FEATURE , TRANSLUCENT , WATER , ACTIVE , STATIC , USER1 , USER2 , USER3 , USER4 , USER5 , USER6 } |
| Entity flags. More... | |
Functions | |
| void | Attribute (string defvalue, string uiwidget, string desc="", string rangescale="", ParamEnumArray enums=NULL) |
| void | ParamEnum (string key, string value, string desc="") |
| void | EditorAttribute (string style, string category, string description, vector sizeMin, vector sizeMax, string color, string color2="0 0 0 0", bool visible=true, bool insertable=true, bool dynamicBox=false) |
| ParamEnum Managed | FromEnum (typename e) |
| proto bool | Get (int varIndex, out void val) |
| proto native IEntitySource | GetChildren () |
| proto native WidgetSource | GetChildren () |
| proto native owned string | GetClassName () |
| proto native owned string | GetName () |
| proto native IEntitySource | GetParent () |
| proto native WidgetSource | GetParent () |
| proto native IEntitySource | GetSibling () |
| proto native WidgetSource | GetSibling () |
| proto bool | IsType (int varIndex, typename type) |
| proto native bool | IsVariableSet (int varIndex) |
| void | ParamEnum (string key, string value, string desc="") |
| proto native int | VarIndex (string varName) |
Variables | |
| string | m_Category |
| folder structure eg. StaticEntities/Walls | |
| string | m_Color |
| string | m_Color2 |
| string | m_DefValue |
| string | m_Desc |
| string | m_Desc |
| string | m_Desc |
| string | m_Description |
| class purpose description | |
| bool | m_DynamicBox |
| ref ParamEnumArray | m_Enums |
| Only ints and floats are currently supported. Array can be defined this way: { ParamEnum("Choice 1", "1"), ParamEnum("Choicen 2", "2") }. | |
| bool | m_Insertable |
| string | m_Key |
| string | m_Key |
| string | m_RangeScale |
| defined as "MIN_VALUE MAX_VALUE STEP" eg. "1 100 0.5" | |
| vector | m_SizeMax |
| max vector of a bounding box | |
| vector | m_SizeMin |
| min vector of a bounding box | |
| class Attribute | m_Style |
| can be "box", "sphere", "cylinder", "pyramid", "diamond" or custom style name | |
| string | m_UiWidget |
| can be "editbox", "combobox", "spinbox", "slider", "font", "fileeditbox", "colorPicker", "flags", "resourceNamePicker" | |
| string | m_Value |
| string | m_Value |
| bool | m_Visible |
Event methods | |
Event method stubs. Reimplement these in inherited entities to receive event calls | |
| void | EOnTouch (IEntity other, int extra) |
| EntityEvent.TOUCH. | |
| void | EOnInit (IEntity other, int extra) |
| EntityEvent.INIT. | |
| void | EOnExtra (IEntity other, int extra) |
| EntityEvent.EXTRA. | |
| void | EOnNotVisible (IEntity other, int extra) |
| EntityEvent.NOTVISIBLE. | |
| void | EOnFrame (IEntity other, float timeSlice) |
| EntityEvent.FRAME. | |
| int | EOnVisible (IEntity other, int extra) |
| EntityEvent.VISIBLE. | |
| void | EOnPostFrame (IEntity other, int extra) |
| EntityEvent.POSTFRAME. | |
| void | EOnWorldProcess (IEntity other, int extra) |
| EntityEvent.WORLDPROCESS. | |
| void | EOnAnimEvent (IEntity other, AnimEvent extra) |
| EntityEvent.ANIMEVENT. | |
| void | EOnSoundEvent (IEntity other, SoundEvent extra) |
| EntityEvent.SOUNDEVENT. | |
| void | EOnSimulate (IEntity other, float dt) |
| EntityEvent.SIMULATE. | |
| void | EOnPostSimulate (IEntity other, float timeSlice) |
| EntityEvent.POSTSIMULATE. | |
| void | EOnJointBreak (IEntity other, int extra) |
| EntityEvent.JOINTBREAK. | |
| void | EOnPhysicsMove (IEntity other, int extra) |
| EntityEvent.PHYSICSMOVE. | |
| void | EOnContact (IEntity other, Contact extra) |
| EntityEvent.CONTACT. | |
| void | EOnUser0 (IEntity other, int extra) |
| EntityEvent.EV_USER+0. | |
| void | EOnUser1 (IEntity other, int extra) |
| EntityEvent.EV_USER+1. | |
| void | EOnEnter (IEntity other, int extra) |
| EntityEvent.ENTER. | |
| void | EOnLeave (IEntity other, int extra) |
| EntityEvent.LEAVE. | |
| void | EOnUser4 (IEntity other, int extra) |
| EntityEvent.EV_USER+4. | |
| void | EOnDummy020 (IEntity other, int extra) |
| Placeholder. | |
| void | EOnDummy021 (IEntity other, int extra) |
| Placeholder. | |
| void | EOnDummy022 (IEntity other, int extra) |
| Placeholder. | |
| void | EOnDummy023 (IEntity other, int extra) |
| Placeholder. | |
| void | EOnDummy024 (IEntity other, int extra) |
| Placeholder. | |
| void | EOnDummy025 (IEntity other, int extra) |
| Placeholder. | |
| void | EOnDummy026 (IEntity other, int extra) |
| Placeholder. | |
| void | EOnDummy027 (IEntity other, int extra) |
| Placeholder. | |
| void | EOnDummy028 (IEntity other, int extra) |
| Placeholder. | |
| void | EOnDummy029 (IEntity other, int extra) |
| Placeholder. | |
| void | EOnDummy030 (IEntity other, int extra) |
| Placeholder. | |
| void | EOnDummy031 (IEntity other, int extra) |
| Placeholder. | |
Transformation methods | |
Setting and getting of entity transformation | |
| proto external void | GetTransform (out vector mat[]) |
| Returns transformation of Entity. | |
| proto external void | GetRenderTransform (out vector mat[]) |
| Returns render transformation of Entity. | |
| proto external void | GetLocalTransform (out vector mat[]) |
| Returns local transformation of Entity. | |
| proto native external vector | GetTransformAxis (int axis) |
| Returns one row of Entity transformation matrix. | |
| proto native external void | SetTransform (vector mat[4]) |
| Sets entity transformation. | |
| proto native external vector | GetOrigin () |
| Returns origin of Entity. | |
| proto external vector | GetLocalPosition () |
| Returns local position of Entity. | |
| proto native external vector | GetYawPitchRoll () |
| Returns orientation of Entity in world space (Yaw, Pitch, Roll). | |
| proto native external vector | GetAngles () |
| Same as GetYawPitchRoll, but returns rotation vector around X, Y and Z axis. | |
| proto native external vector | GetLocalYawPitchRoll () |
| Returns local orientation when it's in hierarchy (Yaw, Pitch, Roll). | |
| proto native external vector | GetLocalAngles () |
| Same as GetLocalYawPitchRoll, but returns rotation vector around X, Y and Z axis. | |
| proto native external void | SetYawPitchRoll (vector angles) |
| Sets angles for entity (Yaw, Pitch, Roll). | |
| proto native external void | SetAngles (vector angles) |
| Same as SetYawPitchRoll, but sets rotation around X, Y and Z axis. | |
| proto native external void | SetOrigin (vector orig) |
| Sets origin for entity. | |
| proto native external float | GetScale () |
| proto native external void | SetScale (float scale) |
| proto native external vector | VectorToParent (vector vec) |
| Transforms local vector to world space. | |
| proto native external vector | CoordToParent (vector coord) |
| Transforms local position to world space. | |
| proto native external vector | VectorToLocal (vector vec) |
| Transforms world space vector to local space. | |
| proto native external vector | CoordToLocal (vector coord) |
| Transforms world space position to local space. | |
Name/ID methods | |
| proto native int | GetID () |
| Return unique entity ID. | |
| proto native void | SetID (int id) |
| Set unique entity ID. | |
| proto native void | SetName (string name) |
| proto native external owned string | GetName () |
Hierarchy methods | |
Scene hierarchy management | |
| proto native external bool | AddChild (notnull IEntity child, int pivot, bool positionOnly=false) |
| Adds child entity to this entity. | |
| proto native external bool | RemoveChild (notnull IEntity child, bool keepTransform=false) |
| Removes child entity from hierarchy. | |
| proto native external Physics | GetPhysics () |
| proto native bool | IsHierarchyPositionOnly () |
| Returns if the hierarchy component was created with positionOnly. | |
| proto native int | GetHierarchyPivot () |
| Returns the hierarchy component pivot. | |
| proto native IEntity | GetParent () |
| Returns pointer to parent Entity in hierarchy. | |
| proto native IEntity | GetChildren () |
| Returns pointer to first child Entity in hierarchy. | |
| proto native IEntity | GetSibling () |
| Returns pointer to next child Entity on the same hierarchy. | |
| proto external void | GetBounds (out vector mins, out vector maxs) |
| Returns local bounding box of model on Entity. | |
| proto external void | GetWorldBounds (out vector mins, out vector maxs) |
| Returns quantized world-bound-box of Entity. | |
Simulation/handling properties | |
Flags that affects simulation and entity handling behavior | |
| proto native external EntityFlags | GetFlags () |
| Returns Entity flags. | |
| proto native external bool | IsFlagSet (EntityFlags flags) |
| Test if one or more of specified flags are set. | |
| proto native external EntityFlags | SetFlags (EntityFlags flags, bool recursively) |
| Sets Entity flags. | |
| proto native external EntityFlags | ClearFlags (EntityFlags flags, bool recursively) |
| Clear Entity flags. | |
| proto native external EntityEvent | GetEventMask () |
| Returns current event mask. | |
| proto native external EntityEvent | SetEventMask (EntityEvent e) |
| Sets event mask. | |
| proto native external EntityEvent | ClearEventMask (EntityEvent e) |
| Clears event mask. | |
| proto external volatile void | SendEvent (notnull IEntity actor, EntityEvent e, void extra) |
| Dynamic event invokation. Parameters are the same as in IEntity::EOnXXXX() methods. | |
Visual component methods | |
Manipulation with visual component - model, particle effect etc | |
| proto native external void | SetObject (vobject object, string options) |
| proto native vobject | GetVObject () |
| Returns visual object set to this Entity. | |
| proto native external int | Animate (float speed, int loop) |
| Updates animation (either xob, or particle, whatever). | |
| proto native external int | AnimateEx (float speed, int loop, out vector lin, out vector ang) |
| Updates animation (either xob, or particle, whatever). | |
| proto native external int | SetCameraMask (int mask) |
| Sets visibility mask for cameras, where Entity will be rendered. | |
| proto native external void | FilterNextTrace () |
| When called, the Entity is excluded from consequent TraceMove/TraceLine. | |
| proto native external int | Update () |
| enum EntityEvent |
Entity events for event-mask, or throwing event from code.
| Enumerator | |
|---|---|
| TOUCH | entity was touched by other entity |
| VISIBLE | entity is visible, so part of the rendering other WorldClass extra frame index result false should be rendered, true shoudn't be rendered Entity is visible. Is rendered if there is some attached object and event EntityEvent.VISIBLE is invoked, when event mask is set. |
| NOTVISIBLE | entity is not visible, will not be part of rendering other WorldClass extra frame index |
| FRAME | new frame event, called each frame other WorldClass extra frame index |
| POSTFRAME | event at the end of each frame or when entity is moved during the frame other WorldClass |
| INIT | event called after the world is created, including all entities other WorldClass |
| JOINTBREAK | |
| SIMULATE | |
| POSTSIMULATE | |
| PHYSICSMOVE | |
| CONTACT | |
| EXTRA | |
| ANIMEVENT | |
| SOUNDEVENT | |
| PHYSICSSTEADY | |
| USER | |
| ENTER | |
| LEAVE | |
| ALL | Mask of all events. |
Definition at line 44 of file enentity.c.
| enum EntityFlags |
Entity flags.
| Enumerator | |
|---|---|
| VISIBLE | entity is visible, so part of the rendering other WorldClass extra frame index result false should be rendered, true shoudn't be rendered Entity is visible. Is rendered if there is some attached object and event EntityEvent.VISIBLE is invoked, when event mask is set. |
| SOLID | Is collidable by various trace methods. |
| TRIGGER | Is not collidable, but invokes touch events. |
| TOUCHTRIGGERS | Interacts with triggers. |
| SYNCHRONIZATION_DIRTY | Entity wants to synchronize (network). |
| FEATURE | Scene rendering hint for dominant objects that are not culled by standard way. |
| TRANSLUCENT | Used by tracing methods. When tracing with TraceFlags.PASSTRANSLUCENT, then this entity is ignored. Used for glass for example. |
| WATER | Used by tracing methods. Traceable only with flag TraceFlags.WATER. |
| ACTIVE | Tells that this entity has to be actively updated by engine, its EntityEvent.FRAME has to be called etc. |
| STATIC | Tells that this entity will represent mostly static object, so we can use more precise but slower methods for scene-tree linking. Static objects are included in the query. Also it tells to scene tree that he can count with this entity as tree-split hint. |
| USER1 | Flags for custom usage and filterings. |
| USER2 | |
| USER3 | |
| USER4 | |
| USER5 | |
| USER6 | |
Definition at line 114 of file enentity.c.
|
inlineprivate |
Definition at line 833 of file enentity.c.
References m_DefValue, m_Desc, m_Enums, m_RangeScale, and m_UiWidget.
Definition at line 796 of file enentity.c.
|
protected |
Adds child entity to this entity.
| child | IEntity Pointer to entity which become our child |
| pivot | int Pivot is pivot index, or -1 for center of parent. |
| positionOnly | bool When set to true, the orientation will still be in WS. |
bool True when entity has been attached. False otherwise. Updates animation (either xob, or particle, whatever).
|
protected |
Updates animation (either xob, or particle, whatever).
|
protected |
Clears event mask.
| e | int event mask |
int event mask
|
protected |
Clear Entity flags.
Returns cleared flags
| flags | int flags to be set |
| recursively | flags will be recursively applied to children of hierarchy too |
int cleared flags | void EditorAttribute | ( | string | style, |
| string | category, | ||
| string | description, | ||
| vector | sizeMin, | ||
| vector | sizeMax, | ||
| string | color, | ||
| string | color2 = "0 0 0 0", | ||
| bool | visible = true, | ||
| bool | insertable = true, | ||
| bool | dynamicBox = false ) |
Definition at line 856 of file enentity.c.
References m_Category, m_Color, m_Color2, m_Description, m_DynamicBox, m_Insertable, m_SizeMax, m_SizeMin, m_Style, and m_Visible.
EntityEvent.ANIMEVENT.
Definition at line 195 of file enentity.c.
EntityEvent.CONTACT.
Definition at line 213 of file enentity.c.
Placeholder.
Definition at line 231 of file enentity.c.
Placeholder.
Definition at line 234 of file enentity.c.
Placeholder.
Definition at line 237 of file enentity.c.
Placeholder.
Definition at line 240 of file enentity.c.
Placeholder.
Definition at line 243 of file enentity.c.
Placeholder.
Definition at line 246 of file enentity.c.
Placeholder.
Definition at line 249 of file enentity.c.
Placeholder.
Definition at line 252 of file enentity.c.
Placeholder.
Definition at line 255 of file enentity.c.
Placeholder.
Definition at line 258 of file enentity.c.
Placeholder.
Definition at line 261 of file enentity.c.
Placeholder.
Definition at line 264 of file enentity.c.
EntityEvent.ENTER.
Definition at line 222 of file enentity.c.
EntityEvent.EXTRA.
Definition at line 177 of file enentity.c.
EntityEvent.FRAME.
Definition at line 183 of file enentity.c.
EntityEvent.INIT.
Definition at line 174 of file enentity.c.
EntityEvent.JOINTBREAK.
Definition at line 207 of file enentity.c.
EntityEvent.LEAVE.
Definition at line 225 of file enentity.c.
EntityEvent.NOTVISIBLE.
Definition at line 180 of file enentity.c.
EntityEvent.PHYSICSMOVE.
Definition at line 210 of file enentity.c.
EntityEvent.POSTFRAME.
Definition at line 189 of file enentity.c.
EntityEvent.POSTSIMULATE.
Definition at line 204 of file enentity.c.
EntityEvent.SIMULATE.
Definition at line 201 of file enentity.c.
|
inlineprotected |
EntityEvent.SOUNDEVENT.
Definition at line 198 of file enentity.c.
EntityEvent.TOUCH.
Definition at line 171 of file enentity.c.
EntityEvent.EV_USER+0.
Definition at line 216 of file enentity.c.
EntityEvent.EV_USER+1.
Definition at line 219 of file enentity.c.
EntityEvent.EV_USER+4.
Definition at line 228 of file enentity.c.
EntityEvent.VISIBLE.
Definition at line 186 of file enentity.c.
EntityEvent.WORLDPROCESS.
Definition at line 192 of file enentity.c.
|
protected |
When called, the Entity is excluded from consequent TraceMove/TraceLine.
Definition at line 3 of file enentity.c.
Referenced by CheckLocalisationPlugin::FindTexts().
|
protected |
Same as GetYawPitchRoll, but returns rotation vector around X, Y and Z axis.
Returns local bounding box of model on Entity.
| [out] | mins | vector minimum point of bounding box |
| [out] | maxs | vector maximum point of bounding box |
|
protected |
Returns pointer to first child Entity in hierarchy.
Referenced by GetAttachedChildren().
|
private |
|
private |
Referenced by CheckLocalisationPlugin::FindTexts().
|
private |
|
protected |
|
protected |
Returns Entity flags.
EntityFlags entity flags
|
protected |
Returns the hierarchy component pivot.
|
protected |
Return unique entity ID.
int unique entity ID
|
protected |
Same as GetLocalYawPitchRoll, but returns rotation vector around X, Y and Z axis.
|
protected |
|
protected |
Returns local transformation of Entity.
It returns only so much vectors as array is big
| mat | vector[1...4] matrix to be get |
|
protected |
|
private |
Referenced by CheckLocalisationPlugin::FindTexts().
|
protected |
|
protected |
|
private |
|
private |
|
protected |
|
protected |
|
protected |
Referenced by AddArrow().
|
protected |
Returns pointer to next child Entity on the same hierarchy.
Referenced by GetAttachedChildren().
|
private |
|
private |
Referenced by CheckLocalisationPlugin::FindTexts().
|
protected |
Returns transformation of Entity.
It returns only so much vectors as array is big
| mat | vector[1...4] matrix to be get |
Referenced by AddArrow(), and Gizmo_GetWorldTransform().
|
protected |
Returns visual object set to this Entity.
No reference is added
Returns quantized world-bound-box of Entity.
| [out] | mins | vector minimum point of bounding box |
| [out] | maxs | vector maximum point of bounding box |
|
protected |
|
protected |
Test if one or more of specified flags are set.
bool True if is set, false otherwise.
|
protected |
Returns if the hierarchy component was created with positionOnly.
|
protected |
Removes child entity from hierarchy.
| child | IEntity Pointer to child entity we want to remove. |
| keepTransform | bool When set to true, Entity is kept on her world position. Otherwise it's local transform is used as world-space one. |
bool True if it was removed, false when this entity is not our child.
|
protected |
Dynamic event invokation. Parameters are the same as in IEntity::EOnXXXX() methods.
|
protected |
Same as SetYawPitchRoll, but sets rotation around X, Y and Z axis.
Sets visibility mask for cameras, where Entity will be rendered.
|
protected |
Sets event mask.
| e | combined mask of one or more members of EntityEvent enum Man player = g_Game.GetPlayer();
Print( player.GetEventMask() );
player.SetEventMask( EntityEvent.VISIBLE );
Print( player.GetEventMask() );
>> 0
>> 128
|
|
protected |
Sets Entity flags.
It's OR operation, not rewrite. Returns previous flags
| flags | int flags to be set |
| recursively | flags will be recursively applied to children of hierarchy too |
int previous flags
|
protected |
\brief Sets the visual object to this entity. Reference is added and released upon entity destruction \param object handle to object got by GetObject() \param options String, dependant on object type.
Only supported one for XOB objects: $remap 'original material name' 'new material'; [$remap 'another original material name' 'anothernew material']
|
protected |
|
protected |
|
protected |
Sets entity transformation.
| mat | vector[4] matrix to be set |
|
protected |
|
protected |
Updates entity state/position. Should be called when you want to manually commit position changes etc before trace methods etc. Entity is updated automatically at the end and the beginning of simulation step, when it has EntityFlags.TFL_ACTIVE flag set. \returns mask with flags
EntityFlags.UPDATE - hierarchy has been updated EntityFlags.UPDATE_MDL - model hierarchy has been updated
Referenced by CheckLocalisationPlugin::FindTexts().
| string m_Category |
folder structure eg. StaticEntities/Walls
Definition at line 846 of file enentity.c.
Referenced by EditorAttribute(), GestureMenuItem(), GetCategory(), GetItemCategory(), and RadialQuickbarItem().
| string m_Color |
Definition at line 850 of file enentity.c.
Referenced by EditorAttribute(), and InitDefaults().
| string m_Color2 |
Definition at line 851 of file enentity.c.
Referenced by EditorAttribute().
|
private |
Definition at line 827 of file enentity.c.
Referenced by Attribute().
|
private |
Definition at line 830 of file enentity.c.
Referenced by Attribute().
| string m_Desc |
Definition at line 809 of file enentity.c.
|
private |
Definition at line 794 of file enentity.c.
Referenced by ParamEnum().
| string m_Description |
class purpose description
Definition at line 847 of file enentity.c.
Referenced by EditorAttribute().
| bool m_DynamicBox |
Definition at line 854 of file enentity.c.
Referenced by EditorAttribute().
|
private |
Only ints and floats are currently supported. Array can be defined this way: { ParamEnum("Choice 1", "1"), ParamEnum("Choicen 2", "2") }.
Definition at line 831 of file enentity.c.
Referenced by Attribute().
| bool m_Insertable |
Definition at line 853 of file enentity.c.
Referenced by EditorAttribute().
| string m_Key |
Definition at line 807 of file enentity.c.
Referenced by DisplayElementBadge::BadgeBleeding(), DisplayElementBadge::BadgeFracture(), DisplayElementBadge::BadgeHeartbeat(), DisplayElementBadge::BadgeLegs(), DisplayElementBadge::BadgePills(), DisplayElementBadge::BadgePoisoned(), DisplayElementBadge::BadgeSick(), DisplayElementBadge::BadgeStuffed(), DisplayElementBadge::BadgeWet(), DisplayElementTendency::TendencyBacteria(), DisplayElementTendency::TendencyBlood(), DisplayElementTendency::TendencyHealth(), DisplayElementTendency::TendencyHunger(), DisplayElementTendency::TendencyTemperature(), DisplayElementTendency::TendencyThirst(), and DisplayElementBase::UpdateHUD().
|
private |
Definition at line 792 of file enentity.c.
Referenced by ParamEnum().
|
private |
defined as "MIN_VALUE MAX_VALUE STEP" eg. "1 100 0.5"
Definition at line 829 of file enentity.c.
Referenced by Attribute().
| vector m_SizeMax |
max vector of a bounding box
Definition at line 849 of file enentity.c.
Referenced by EditorAttribute().
| vector m_SizeMin |
min vector of a bounding box
Definition at line 848 of file enentity.c.
Referenced by EditorAttribute().
| class Attribute m_Style |
can be "box", "sphere", "cylinder", "pyramid", "diamond" or custom style name
Referenced by EditorAttribute().
|
private |
can be "editbox", "combobox", "spinbox", "slider", "font", "fileeditbox", "colorPicker", "flags", "resourceNamePicker"
Definition at line 828 of file enentity.c.
Referenced by Attribute().
| string m_Value |
Definition at line 808 of file enentity.c.
Referenced by Add(), Get(), GetValue(), OnStoreLoad(), OnStoreSave(), PlayerStat(), PresenceNotifierNoiseEvent(), PrintElements(), Set(), DisplayElementBase::SetSeriousnessLevel(), DisplayElementBase::SetTendency(), SyncedValueAgent(), SyncedValueLevel(), and DisplayElementBase::UpdateHUD().
|
private |
Definition at line 793 of file enentity.c.
Referenced by ParamEnum().
| bool m_Visible |
Definition at line 852 of file enentity.c.
Referenced by EditorAttribute().