소스 검색

Add default sizes to Zephiro

tags/v0.0.4
Fen Dweller 5 년 전
부모
커밋
2e1864f275
1개의 변경된 파일17개의 추가작업 그리고 1개의 파일을 삭제
  1. +17
    -1
      presets/characters.js

+ 17
- 1
presets/characters.js 파일 보기

@@ -610,7 +610,23 @@ function makeZephiro() {
};

const entity = makeEntity("Zephiro", "Zephiro", views);
entity.views.front.height = math.unit(118, "feet");
entity.views.front.height = math.unit(118, "feet");

entity.defaults.push({
name: "Micro",
height: math.unit(3, "inches")
});

entity.defaults.push({
name: "Normal",
height: math.unit(5 + 3/12, "feet")
});

entity.defaults.push({
name: "Macro",
height: math.unit(108, "feet")
});
return entity;
}



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