FontTextureChanged() public method

Called by the [FontUpdateTracker] when the texture associated with a font is modified.

public FontTextureChanged ( ) : void
return void
コード例 #1
0
 static int FontTextureChanged(IntPtr L)
 {
     LuaScriptMgr.CheckArgsCount(L, 1);
     UnityEngine.UI.Text obj = (UnityEngine.UI.Text)LuaScriptMgr.GetUnityObjectSelf(L, 1, "UnityEngine.UI.Text");
     obj.FontTextureChanged();
     return(0);
 }
コード例 #2
0
 static int FontTextureChanged(IntPtr L)
 {
     L.ChkArgsCount(1);
     UnityEngine.UI.Text obj = (UnityEngine.UI.Text)L.ChkUnityObjectSelf(1, "UnityEngine.UI.Text");
     obj.FontTextureChanged();
     return(0);
 }
コード例 #3
0
 static public int FontTextureChanged(IntPtr l)
 {
     try {
         UnityEngine.UI.Text self = (UnityEngine.UI.Text)checkSelf(l);
         self.FontTextureChanged();
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
コード例 #4
0
 static public int FontTextureChanged(IntPtr l)
 {
     try{
         UnityEngine.UI.Text self = (UnityEngine.UI.Text)checkSelf(l);
         self.FontTextureChanged();
         return(0);
     }
     catch (Exception e) {
         LuaDLL.luaL_error(l, e.ToString());
         return(0);
     }
 }
コード例 #5
0
 static int QPYX_FontTextureChanged_YXQP(IntPtr L_YXQP)
 {
     try
     {
         ToLua.CheckArgsCount(L_YXQP, 1);
         UnityEngine.UI.Text QPYX_obj_YXQP = (UnityEngine.UI.Text)ToLua.CheckObject <UnityEngine.UI.Text>(L_YXQP, 1);
         QPYX_obj_YXQP.FontTextureChanged();
         return(0);
     }
     catch (Exception e_YXQP)                {
         return(LuaDLL.toluaL_exception(L_YXQP, e_YXQP));
     }
 }
コード例 #6
0
 static int FontTextureChanged(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         UnityEngine.UI.Text obj = (UnityEngine.UI.Text)ToLua.CheckObject(L, 1, typeof(UnityEngine.UI.Text));
         obj.FontTextureChanged();
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
コード例 #7
0
 public static int FontTextureChanged_wrap(long L)
 {
     try
     {
         long nThisPtr           = FCLibHelper.fc_get_inport_obj_ptr(L);
         UnityEngine.UI.Text obj = get_obj(nThisPtr);
         obj.FontTextureChanged();
     }
     catch (Exception e)
     {
         Debug.LogException(e);
     }
     return(0);
 }
コード例 #8
0
    static int FontTextureChanged(IntPtr L)
    {
#if UNITY_EDITOR
        ToluaProfiler.AddCallRecord("UnityEngine.UI.Text.FontTextureChanged");
#endif
        try
        {
            ToLua.CheckArgsCount(L, 1);
            UnityEngine.UI.Text obj = (UnityEngine.UI.Text)ToLua.CheckObject <UnityEngine.UI.Text>(L, 1);
            obj.FontTextureChanged();
            return(0);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e));
        }
    }