
Lv.1
逊哥array,啥也不会 退了退了
签名:what can i say
在 【Box3】求助 悬赏自主研发的过山车代码!!!! 中回复
#比如玩家出生在传送门上:
world.onPlayerJoin(({entity})=>{
entity.player.spawnPoint = world.querySelector('#传送门').position
entity.position.copy(entity.player.spawnPoint)
entity.position.y += 4
})2021-08-06T10:58:46 点赞:0
在 给你 10 亿美元,但会有一只蜗牛永远追杀你,你干不干? 中回复
https://www.bilibili.com/bangumi/play/ss34149
详见视频(doge)
2021-08-06T13:08:50 点赞:0
在 【BOX3求助】关于射线的问题 中回复
我虽然不知道,但是我猜:
const tnt = world.createEntity({
mesh: 'mesh/TNT.vb',
meshScale: [1/16,1/16,1/16], //改动
collides: true,
gravity: true,
position: [
13 + Math.random() * 11,
16,
93 + Math.random() * 16,
],
});2021-08-11T14:00:30 点赞:0
在 【岛三SQL生成器】新技术の教程!(1:创建表格) 中回复
async function createTable() {
await db.sql`CREATE TABLE IF NOT EXISTS happyCola (
coin REAL DEFAULT 0,
items TEXT DEFAULT "",
userKey TEXT PRIMARY KEY UNIQUE DEFAULT ""
)`
}
createTable()2021-08-12T10:29:20 点赞:0