用户:
一勺小汤_纪念号查看:2 回复:10 评论:2 创建时间:2023-04-01T17:41:32












一勺小汤_纪念号const npc2 = world.querySelector('#机器人');
npc2.enableInteract = true; // 允许进行互动
npc2.interactRadius = 2; // 实体的互动范围
npc2.interactHint = npc2.id; // 互动提示框显示实体的名称
npc2.interactColor = new GameRGBColor(0 ,101, 255); // 互动提示的文字颜色
npc2.onInteract(async({entity}) => {
const result = await entity.player.dialog({
type: GameDialogType.TEXT, // 对话框的类型,TEXT是文本框。
title: npc2.id, // 对话框标题为NPC名字,表示正
content: `欢迎来到新一站:冬天!快开始跑酷吧!`,
});
});点赞0
评论