GameFramework.EntityController.GetEntityViewById C# (CSharp) Method

GetEntityViewById() private method

private GetEntityViewById ( int objId ) : EntityViewModel
objId int
return EntityViewModel
        internal EntityViewModel GetEntityViewById(int objId)
        {
            return EntityViewModelManager.Instance.GetEntityViewById(objId);
        }

Usage Example

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