anegostudios / VintageStory-Issues

Vintage Story's public issue tracker for reporting bugs, crashes and the like
47 stars 16 forks source link

Muddy gravel texture is too repetitive / not randomized #4443

Open Craluminum2413 opened 2 weeks ago

Craluminum2413 commented 2 weeks ago

Game Version

v1.20.0-pre.10

Platform

Windows

Modded

Vanilla

SP/MP

Singleplayer

Description

Muddy gravel texture is too repetitive and thus .

To fix, open survival/blocktypes/soil/muddygravel.json and then add these changes:

Replace shape with

"shape": {
    "base": "block/basic/cube",
    "alternates": [
        { "base": "block/basic/cube", "rotateY": 90 },
        { "base": "block/basic/cube", "rotateY": 180 },
        { "base": "block/basic/cube", "rotateY": 270 }
    ]
},

Remove drawtype.

How to reproduce

No response

Screenshots

Before 2024-11-05_18-57-17

After my fixes 2024-11-05_18-56-31

Logs

No response

RedramVS commented 2 weeks ago

The blocks look the same to me after adding that. You didn't do anything else to get that result? Like change the drawtype or anything?

Craluminum2413 commented 2 weeks ago

@RedramVS No I didn't, I only replace shape and remove drawtype

Craluminum2413 commented 2 weeks ago

@RedramVS It should be

"drawtype": "json"

otherwise it won't work