Ejemplo n.º 1
0
    public void qweqweqweqweqwe()
    {
        ChatBubble chatBubble = null;

        if (UIManager.instance.IsAlive(UINames.ChatBubble))
        {
        }
        else
        {
            chatBubble = UIManager.instance.ShowUI <ChatBubble>(UINames.ChatBubble);
        }
        chatBubble.transform.localPosition = new Vector3(-160, 130, 0);

        chatBubble.DoFadeIn();
        miko.PlayAnimator("deny");
        chatBubble.ShowNormalMessage("死ね Win32API!!!");
    }
Ejemplo n.º 2
0
    public void ShowChatBubblev2(int id, object args)
    {
        if (!showChatBubble)
        {
            return;
        }
        string     content    = args as string;
        ChatBubble chatBubble = null;

        if (UIManager.instance.IsAlive(UINames.ChatBubble))
        {
            chatBubble = UIManager.instance.GetAliveUI <ChatBubble>(UINames.ChatBubble);
        }
        else
        {
            chatBubble = UIManager.instance.ShowUI <ChatBubble>(UINames.ChatBubble);
            chatBubble.transform.localPosition = new Vector3(-160, 130, 0);
        }
        chatBubble.DoFadeIn();

        chatBubble.ShowNormalMessage(content);
    }