Translations:Modding:Basic Block/65/es

From Vintage Story Wiki
Revision as of 19:52, 14 June 2023 by Eleli (talk | contribs) (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>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Para especificar la forma por tipo tenemos que eliminar la propiedad shape y sustituirla por shapebytype:

	shapebytype: {
		"*-good": {
			base: "block/myshinymodel1",
		},
		"*-used": {
			base: "block/myshinymodel",
		},
	},