 | EntityGameObjectMapItem Property |
Gets or sets the Unity game object mapped by the specified entity id.
Namespace: Slash.Unity.Common.ECSAssembly: Slash.Unity.Common (in Slash.Unity.Common.dll) Version: 1.0.6018.40182
Syntaxpublic GameObject this[
int entityId
] { get; set; }
Public Default Property Item (
entityId As Integer
) As GameObject
Get
Set
public:
property GameObject^ default[int entityId] {
GameObject^ get (int entityId);
void set (int entityId, GameObject^ value);
}
member Item : GameObject with get, set
Parameters
- entityId
- Type: SystemInt32
Entity id mapped to the game object.
Return Value
Type:
GameObjectUnity game object mapped by the specified entity id.
See Also