GameFramework.EntityController.GetGameObject C# (CSharp) Method

GetGameObject() private method

private GetGameObject ( int objId ) : EntityInfo
objId int
return EntityInfo
        internal EntityInfo GetGameObject(int objId)
        {
            EntityInfo obj = m_Scene.EntityManager.GetEntityInfo(objId);
            return obj;
        }

Same methods

EntityController::GetGameObject ( int objId ) : UnityEngine.GameObject

Usage Example

コード例 #1
0
 static public int GetGameObject(IntPtr l)
 {
     try {
         GameFramework.EntityController self = (GameFramework.EntityController)checkSelf(l);
         System.Int32 a1;
         checkType(l, 2, out a1);
         var ret = self.GetGameObject(a1);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }