Sfoglia il codice sorgente

Add default sizes to Zephiro

tags/v0.0.4
Fen Dweller 5 anni fa
parent
commit
2e1864f275
1 ha cambiato i file con 17 aggiunte e 1 eliminazioni
  1. +17
    -1
      presets/characters.js

+ 17
- 1
presets/characters.js Vedi File

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



Loading…
Annulla
Salva