Translations:Modding:Basic Block/65/es: Difference between revisions
From Vintage Story Wiki
(Created page with "Para especificar la forma por tipo tenemos que eliminar la propiedad <code>shape</code> y sustituirla por <code>shapebytype</code>: <syntaxhighlight lang="json"> shapebytype: { "*-good": { base: "block/myshinymodel1", }, "*-used": { base: "block/myshinymodel", }, }, </syntaxhighlight>") |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 2: | Line 2: | ||
<syntaxhighlight lang="json"> | <syntaxhighlight lang="json"> | ||
shapebytype: { | shapebytype: { | ||
"*- | "*-bien": { | ||
base: "block/ | base: "block/mimodelobrillante1", | ||
}, | }, | ||
"*- | "*-usado": { | ||
base: "block/ | base: "block/mimodelobrillante", | ||
}, | }, | ||
}, | }, | ||
</syntaxhighlight> | </syntaxhighlight> |
Latest revision as of 19:58, 14 June 2023
Para especificar la forma por tipo tenemos que eliminar la propiedad shape
y sustituirla por shapebytype
:
shapebytype: {
"*-bien": {
base: "block/mimodelobrillante1",
},
"*-usado": {
base: "block/mimodelobrillante",
},
},