浏览代码

Add sizes to Manny and Adake

tags/v0.1.0
Fen Dweller 6 年前
父节点
当前提交
8975ed4c39
共有 1 个文件被更改,包括 43 次插入0 次删除
  1. +43
    -0
      presets/characters.js

+ 43
- 0
presets/characters.js 查看文件

@@ -367,6 +367,28 @@ function makeManny() {
};

const entity = makeEntity("Manny", "Dialuca01", views);

entity.defaults.push({
name: "Normal",
height: math.unit(7, "feet")
});
entity.defaults.push({
name: "Macro",
height: math.unit(78, "feet")
});
entity.defaults.push({
name: "Macro+",
height: math.unit(300, "meters")
});
entity.defaults.push({
name: "Megamacro",
height: math.unit(5167, "meters")
});
entity.defaults.push({
name: "Gigamacro",
height: math.unit(41769, "miles")
});
entity.views.front.height = math.unit(78, "feet");
return entity;
}
@@ -458,6 +480,27 @@ function makeAdake() {
};

const entity = makeEntity("Adake", "Dialuca01", views);
entity.defaults.push({
name: "Normal",
height: math.unit(7, "feet")
});
entity.defaults.push({
name: "Macro",
height: math.unit(78, "feet")
});
entity.defaults.push({
name: "Macro+",
height: math.unit(300, "meters")
});
entity.defaults.push({
name: "Megamacro",
height: math.unit(5167, "meters")
});
entity.defaults.push({
name: "Gigamacro",
height: math.unit(41769, "miles")
});
entity.views.front.height = math.unit(78, "feet");
return entity;
}


正在加载...
取消
保存