
Lv.1
战绩:〔5新喵〕状态:『有点似了』
签名:(思考)我也不知道,就到处看看awa
在 代码问题? 中回复
// 先在场景中放置一个名称为 NPC 的实体。
const npc = world.querySelector('#NPC');
npc.enableInteract = true; // 允许进行互动
npc.interactRadius = 4.5; // 实体的互动范围
npc.interactHint = npc.id; // 互动提示框显示实体的名称
npc.interactColor = new Box3RGBColor(0,1,0); // 互动提示的文字颜色
// 玩家与实体进行交互时触发
npc.onInteract(async({entity}) => {
const result = await entity.player.dialog({
type: Box3DialogType.TEXT, // 对话框的类型,TEXT是文本框。
title: npc.id, // 对话框标题为NPC名字,表示正在说话的是NPC
content: `你好,${entity.player.name},很高兴认识你
});
});2022-01-23T21:09:08 点赞:0
在 求代码教程 中回复
// 先在场景中放置一个名称为 NPC 的实体。
const npc = world.querySelector('#NPC');
npc.enableInteract = true; // 允许进行互动
npc.interactRadius = 4.5; // 实体的互动范围
npc.interactHint = npc.id; // 互动提示框显示实体的名称
npc.interactColor = new Box3RGBColor(0,1,0); // 互动提示的文字颜色
// 玩家与实体进行交互时触发
npc.onInteract(async({entity}) => {
const result = await entity.player.dialog({
type: Box3DialogType.TEXT, // 对话框的类型,TEXT是文本框。
title: npc.id, // 对话框标题为NPC名字,表示正在说话的是NPC
content: `你好,${entity.player.name},很高兴认识你
});
});2022-01-23T22:10:18 点赞:0
在 求代码,急 中回复
for(let x=0; x<127; x++){
for(let z=0; z<127; z++){
voxels.setVoxel(x, 8, z, '//填石头的名字') }}
2022-01-23T22:15:01 点赞:0
在 代码问题? 中回复
// 先在场景中放置一个名称为 NPC 的实体。
const npc = world.querySelector('#NPC');
npc.enableInteract = true; // 允许进行互动
npc.interactRadius = 8; // 实体的互动范围
npc.interactHint = npc.id; // 互动提示框显示实体的名称
npc.interactColor = new Box3RGBColor(0,1,0); // 互动提示的文字颜色
// 玩家与实体进行交互时触发
npc.onInteract(async({entity}) => {
const result = await entity.player.dialog({
type: Box3DialogType.TEXT, // 对话框的类型,TEXT是文本框。
title: npc.id, // 对话框标题为NPC名字,表示正在说话的是NPC
content: `你好,${entity.player.name},很高兴认识你`,
});
});2022-01-24T11:33:04 点赞:0
在 【官方】如何上首页?只需在本帖下面评论! 中回复
用户ID:12041142
作品链接:https://shequ.cod喵/work/238548075
作品名:卡牌-对战(文字)(开源)
创作历程:耗时7天(除去规划玩法与内容),2024.10.6发布后更新至今
作品类型:卡牌类
作品亮点:卡牌种类较多,可以尝试不同的模式
创意:8分
玩法:8分
视觉:9分
完成度:9分
投稿工作室:X-C-L工作室
投稿分类:点猫精选
2025-02-23T14:29:28 点赞:0
在 【官方】如何上首页?只需在本帖下面评论! 中回复
用户ID:12041142 作品链接:https://shequ.codemao.cn/mobile/work/137886355 作品名:沙盒战争 创作历程:在2021年立项,2022年中断制作,2023年为了给过去的自己一个交代,完成并发布 作品类型:模拟类 作品亮点:观察人物间的战斗 创意:6 玩法:7 视觉:8 完成度:10 投稿工作室:X-C-L工作室 投稿分区:新作喵喵看
2025-03-02T17:47:54 点赞:0