gpt4 book ai didi

screeps - 游戏 Screeps - 使用 lodash 模块

转载 作者:行者123 更新时间:2023-12-02 11:00:47 25 4
gpt4 key购买 nike

我正在玩 Screeps ( http://screeps.com ),并且我正在尝试使用 lodash 模块来过滤我的收割机和其他 Creeps。下面的代码应该可以工作,但是当我运行它时,我得到 ReferenceError: _ is not defined at <main>:6:18 。知道出了什么问题吗?

var harvesters = _.filter(Game.creeps, {memory: 'harvester'});
if(_.size(harvesters) < 3 && Memory.creep_queue.length===0) {
Memory.creep_queue.push('harvester')
}

最佳答案

使用 lodash 模块时,有必要将其放入模块开头的 var 中,如下所示,然后它应该可以工作:

var _ = require('lodash');

关于screeps - 游戏 Screeps - 使用 lodash 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27067243/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com