ShowTooltip() 공개 메소드

Show or hide the tooltip.
public ShowTooltip ( bool val ) : void
val bool
리턴 void
예제 #1
0
    static int ShowTooltip(IntPtr L)
    {
        LuaScriptMgr.CheckArgsCount(L, 2);
        UICamera obj  = (UICamera)LuaScriptMgr.GetUnityObjectSelf(L, 1, "UICamera");
        bool     arg0 = LuaScriptMgr.GetBoolean(L, 2);

        obj.ShowTooltip(arg0);
        return(0);
    }