如何在 Roblox 游戏模式下显示弹出消息?
我正在尝试解析聊天消息中的关键字,我将使用这些关键字来触发各种功能。 为了使用聊天,我必须在游戏模式下进行测试,首先单击“工具”->“游戏模式”开始。 测试-> 启动服务器然后单击工具-> 测试-> 启动播放器。 命令窗口在游戏模式下不可用,因此我需要一种方法来获取一些调试反馈。 我认为弹出消息可以很好地达到此目的。
我怀疑显示弹出消息相当简单,但我找不到任何相关信息。
I'm trying to parse chat messages for keywords that I will use to trigger various functions. In order to use the chat I have to test in game mode, which is started by first clicking Tools-> Test-> Start Server and then clicking Tools-> Test-> Start Player. The command window is not available in game mode so I need a way to get some debugging feedback. I figured a popup message would be good for that purpose.
I suspect its fairly simple to display a popup message but I cant find any information on it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
您是否启用了输出窗口?
然后,例如,如果您的脚本确实如此,
您应该在输出窗口中看到它。 或者看看
如何添加消息
Did you enable the Output window?
Then e.g. if you script does
You should see that in the output window. Else take a look at
How to add messages
启用输出,
按测试>> 启动服务器
在该新窗口中按“测试>>” 启动播放器
在服务器窗口(不是新播放器窗口)中,打开命令栏并键入:
然后按 Enter。
您可以对其进行测试并获得输出。
Enable the output,
Press Test >> Start Server
In that new window press Test >> Start Player
In the server window (Not the new player window), open the command bar and type:
And press enter.
You can test it, and get output.
要查看输出,请进入服务器窗口,并确保显示输出窗口。
to see the output, go into the server window, and make sure the output window is shown.
虽然以下答案当然是正确的,但您可以创建一个弹出窗口来显示...输出的输出。 这可以通过覆盖默认的“打印”功能来完成
:
While the following answers are of course correct, you CAN create a popup to display output from the...output. This can be done by overriding the default "print" function:
end
这可能是最好的实施方式。
This can be best way to implement.
有一些方法可以实现这一目标。
There are some ways you can achieve this.
ROBLOX 实际上添加了一个开发者控制台(请在 wiki 上查看:wiki.roblox.com/index.php? title=Developer_console)到游戏客户端,并将其可用性添加到 studio 2015。您可以使用
f9
按钮(或笔记本电脑上的alt+f9
)进行访问。 您还可以打开输出窗口(请在 wiki 上查看:wiki.roblox.com/index.php?title=Output)并查看其中的错误。 希望这有帮助!ROBLOX has actually added a developer console (see it at the wiki: wiki.roblox.com/index.php?title=Developer_console) to the game client AND added its availability to studio 2015. You can access using the
f9
button (oralt+f9
on laptops). You could've also opened the output window (see it at the wiki: wiki.roblox.com/index.php?title=Output) and see the errors there. Hope this helped!