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 |
||
Line 3: | Line 3: | ||
shapebytype: { | shapebytype: { | ||
"*-good": { | "*-good": { | ||
base: "block/ | base: "block/mimodelobrillante1", | ||
}, | }, | ||
"*-used": { | "*-used": { | ||
base: "block/ | base: "block/mimodelobrillante", | ||
}, | }, | ||
}, | }, | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 19:56, 14 June 2023
Para especificar la forma por tipo tenemos que eliminar la propiedad shape
y sustituirla por shapebytype
:
shapebytype: {
"*-good": {
base: "block/mimodelobrillante1",
},
"*-used": {
base: "block/mimodelobrillante",
},
},