最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

排行榜

2023-08-11 16:06 作者:fun-無痕  | 我要投稿

// 當玩家進入游戲時

world.onPlayerJoin(({ entity }) => {

? ? // 設(shè)置剛進入游戲的玩家持有金幣(coin)數(shù)量為0

? ? entity.player.coin = 0

? ??

? ? // 當玩家按下按鍵時,觸發(fā)交互

? ? entity.player.onPress(({ button }) => {

? ? ? ? if (button === Box3ButtonType.ACTION0) {

? ? ? ? ? ? entity.player.dialog({

? ? ? ? ? ? ? ? type: Box3DialogType.TEXT,

? ? ? ? ? ? ? ? title: "金幣排行榜",

? ? ? ? ? ? ? ? content: dialogContent(),

? ? ? ? ? ? })

? ? ? ? }

? ? })

});


// 找到世界中的"AT M"機器模型

const atm = world.querySelector(`#ATM`)


// 設(shè)置AM機器可互動

atm.enableInteract = true


// 設(shè)置ATM機器互動距離為5

atm.interactRadius = 5;


// 監(jiān)聽世界中的互動事件

world.onInteract(({ entity, targetEntity }) => {

? ? // 判斷被"互動"的實體,

? ? if (targetEntity.id === "ATM") {

? ? ? ? entity.player.coin = entity.player.coin + 1;

? ? ? ? world.say(`${entity.player.name}獲得了1金幣!`);

? ? }

})


// 對話框內(nèi)容

function dialogContent() {

? ? // 首先獲取當前世界中的所有玩家

? ? const allPlayerEntities = world.querySelectorAll('player');

? ??

? ? // 然后將所有的玩家進行排序,排序的規(guī)則是按照玩家持有的金幣數(shù)量降序

? ? const sortedPlayerEntities = allPlayerEntities.sort((a, b)=>? b.player.coin - a.player.coin);

? ??

? ??

? ? // 接下來,我們將在排行榜上以: xxx 有 yyy 個金幣 的格式展示,并且每一條信息換一行顯示!


? ? ? ? // 首先聲明一個content字符串,一會用來保存每一個玩家的信息

? ? ? ? let content = "";

? ??

? ? // 在這里需要做一個循環(huán)遍歷,將剛才得到的有序的玩家數(shù)組遍歷一遍

? ? for(const entity of sortedPlayerEntities ) {

? ? ? ??

? ? ? ? // 在遍歷的過程中,每一次遍歷,我們拿到當前的實體(entity),

? ? ? ? // 將實體上的玩家名字(player.name)以及玩家金幣數(shù)量(player.coin)拼接成排行榜上的一行信息

? ? ? ? // 這樣就得到: xxx 有 yyy 個金幣 的格式啦

? ? ? ? // 我們在這個文字的末尾加一個\n, 這樣我們就能實現(xiàn)換行的效果

? ? ? ? // 緊接著,再把這行信息加上content,這樣做是為了把每一個玩家的排行榜信息拼接起來,保存到content中

? ? ? ? content = content + `${entity.player.name}有${entity.player.coin}個金幣\n`

? ? }

? ??

? ? // 最后,把得到的完整的帶有玩家名稱和金幣數(shù)量,并且會換行的排行榜數(shù)據(jù)(content)返回出去

? ? return content

}


排行榜的評論 (共 條)

分享到微博請遵守國家法律
乃东县| 道真| 南华县| 诏安县| 油尖旺区| 田林县| 黑河市| 内乡县| 安岳县| 芦山县| 遂平县| 阿克苏市| 额敏县| 高碑店市| 上高县| 建阳市| 旬邑县| 常宁市| 阳春市| 百色市| 郴州市| 县级市| 赫章县| 平阴县| 古交市| 马鞍山市| 响水县| 盐山县| 栾川县| 海门市| 乌苏市| 潼关县| 白玉县| 会昌县| 云浮市| 浙江省| 游戏| 井冈山市| 木兰县| 阳江市| 盘山县|