
Lv.1
5编程猫首页 6神岛首页 TC创意工坊
在 单独开的一个作品自荐区 中回复
标准数独
数独游戏(外加亿点功能,自己看作品说明和操作说明)
https://shequ.codemao.cn/work/190133256
2023-07-12T09:55:44 点赞:1
在 单独开的一个作品自荐区 中回复
FoosBall 桌面足球 绝对创新(整个猫站没有类似作品),可联机,有人机,双端适配,UI精美(?),我要精选!!! 作品链接:https://shequ.codemao.cn/work/193793963
2023-07-30T19:50:55 点赞:2
在 【K4】《Foosball 桌面足球》联机公测 中回复
不要说普通电脑难了,开局迅速控球还是很简单的,因为守门员不太聪明(?)
超级电脑就不是人可以打败的了()

2023-08-05T12:22:52 点赞:0
在 【神岛】当我把旧box3的构造API喂给文心一言模型 中回复
最新返回值:
world.onTick(({ tick }) => {
// 遍历所有玩家
world.querySelectorAll('player').forEach((entity) => {
// 获取玩家类的信息
var player = entity.player;
// 这里可以针对玩家执行特定的操作,例如输出玩家的名字
console.log(player.name);
});
});2023-08-09T21:20:30 点赞:0
在 【神岛】当我把旧box3的构造API喂给文心一言模型 中回复
最新效果:
// 监听按键事件
world.onPress(({ button, entity }) => {
// 获取玩家对象
let player = entity.player;
if (button === 'action0') {
// 按下左键
const res = world.raycast(entity.position, new Box3Vector3(0, -1, 0));
console.log(JSON.stringify(res));
} else if (button === 'action1') {
// 按下右键
const res = world.raycast(entity.position, new Box3Vector3(0, -1, 0));
console.log(JSON.stringify(res));
}
});2023-08-09T21:29:23 点赞:0
在 NomenChat 1.1.0更新 | NomenChat/Box3 0.1发布 中回复
github进不去……但是我有旧box3的开发文档和构造代码()()()你这不会是新版的吧()()
2023-08-11T07:35:29 点赞:0