GameFramework.EntityController.GetEntityView C# (CSharp) Method

GetEntityView() private method

private GetEntityView ( UnityEngine obj ) : EntityViewModel
obj UnityEngine
return EntityViewModel
        internal EntityViewModel GetEntityView(UnityEngine.GameObject obj)
        {
            return EntityViewModelManager.Instance.GetEntityView(obj);
        }

Usage Example

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