Translations:Modding:Basic Block/42/es: Difference between revisions
From Vintage Story Wiki
(Created page with "<syntaxhighlight lang="json"> texturesbytype: { "*-oro": { all: { base: "block/mygoldtexture", alternates: [{base: "block/mygoldtexture1" }, {base: "block/mygoldtexture2" }, {base: "block/mygoldtexture3" }], }, }, "*-hierro": { all: { base: "block/myirontexture", alternates: [{base: "block/myirontexture1" }, {base: "block/myirontexture2" }, {base: "block/myirontexture3" }], }, } }, </syntaxhighlight>") |
No edit summary |
||
Line 1: | Line 1: | ||
<syntaxhighlight lang="json"> | <syntaxhighlight lang="json"> | ||
texturesbytype: { | texturesbytype: { | ||
"*- | "*-gold": { | ||
all: { | all: { | ||
base: "block/mygoldtexture", | base: "block/mygoldtexture", | ||
Line 7: | Line 7: | ||
}, | }, | ||
}, | }, | ||
"*- | "*-iron": { | ||
all: { | all: { | ||
base: "block/myirontexture", | base: "block/myirontexture", |
Revision as of 19:34, 14 June 2023
texturesbytype: {
"*-gold": {
all: {
base: "block/mygoldtexture",
alternates: [{base: "block/mygoldtexture1" }, {base: "block/mygoldtexture2" }, {base: "block/mygoldtexture3" }],
},
},
"*-iron": {
all: {
base: "block/myirontexture",
alternates: [{base: "block/myirontexture1" }, {base: "block/myirontexture2" }, {base: "block/myirontexture3" }],
},
}
},