소스 검색

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;
}


불러오는 중...
취소
저장