Procházet zdrojové kódy

Add default sizes to Zephiro

tags/v0.0.4
Fen Dweller před 5 roky
rodič
revize
2e1864f275
1 změnil soubory, kde provedl 17 přidání a 1 odebrání
  1. +17
    -1
      presets/characters.js

+ 17
- 1
presets/characters.js Zobrazit soubor

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



Načítá se…
Zrušit
Uložit