turtlegame/assets/overworld/fence-horiz.svg
Dominic e03cd06c78
All checks were successful
Rust / rustfmt (push) Successful in 22s
Rust / clippy (push) Successful in 1m17s
Rust / build (push) Successful in 3m21s
Add fence to static worldgen (#4)
Fence Assets

Reviewed-on: #4
Co-authored-by: Dominic <git@msrd0.de>
Co-committed-by: Dominic <git@msrd0.de>
2024-07-06 21:19:24 +00:00

20 lines
684 B
XML

<svg version="1.1" width="512" height="512" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"
stroke="black" stroke-width="1" fill="none">
<image x="0" y="0" width="64" height="64" href="grass.svg"/>
<!-- continuous upper line of the fence -->
<path d="M0,26 v4 h64 v-4 z" stroke="none" fill="saddlebrown"/>
<path d="M0,26 h64 m-64,4 h64"/>
<!-- continuous lower line of the fence -->
<path d="M0,34 v4 h64 v-4 z" stroke="none" fill="saddlebrown"/>
<path d="M0,34 h64 m-64,4 h64"/>
<!-- left fence post -->
<path d="M12,40 v-16 l4,-4 l4,4 v16 z" fill="saddlebrown"/>
<!-- right fence post -->
<path d="M44,40 v-16 l4,-4 l4,4 v16 z" fill="saddlebrown"/>
</svg>