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!!!"); }
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); }