diff --git a/README.md b/README.md index 640a88f..f7277b5 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ - + Welcome to the source code for the Tiny Life documentation site! On the site, you can find the full modding API documentation, a bunch of modding tutorials, as well as an online version of the game's changelog. diff --git a/articles/creating_textures.md b/articles/creating_textures.md new file mode 100644 index 0000000..8b55127 --- /dev/null +++ b/articles/creating_textures.md @@ -0,0 +1,6 @@ +# Creating Textures +When creating textures, either for custom mods or to change the game's default textures, there are several things that you will have to look out for. This article provides some guidelines and explanations. + +![](~/media/art_guide.png) + +*Note that this art guide is work in progress and will be turned into proper documentation soon.* diff --git a/articles/toc.yml b/articles/toc.yml index 8456325..a06d5d6 100644 --- a/articles/toc.yml +++ b/articles/toc.yml @@ -1,8 +1,12 @@ - name: Getting Custom Content href: getting.md -- name: Modding Basics - href: mod_basics.md -- name: Testing Cheats - href: cheats.md +- name: Creating Custom Content + items: + - name: Modding Basics + href: mod_basics.md + - name: Creating Textures + href: creating_textures.md - name: Contributing Localizations - href: localization.md \ No newline at end of file + href: localization.md +- name: Testing Cheats + href: cheats.md \ No newline at end of file diff --git a/docfx.json b/docfx.json index a34b91f..78c9e65 100644 --- a/docfx.json +++ b/docfx.json @@ -13,14 +13,13 @@ ], "resource": [{ "files": [ - "favicon.ico", - "banner.png", - "logo.png" + "media/**" ] }], "globalMetadata": { "_appTitle": "Tiny Life Docs", - "_appLogoPath": "logo.png", + "_appLogoPath": "media/logo.png", + "_appFaviconPath": "media/favicon.ico", "_appFooter": "© 2021 EllpeckImpressumPrivacy" }, "dest": "_site", diff --git a/index.md b/index.md index 787a3c0..9402144 100644 --- a/index.md +++ b/index.md @@ -1,4 +1,4 @@ - + Welcome to the Tiny Life documentation site! On here, you can find the full modding API documentation, a bunch of modding tutorials, as well as an online version of the game's changelog. diff --git a/media/art_guide.png b/media/art_guide.png new file mode 100644 index 0000000..bf1bbf0 Binary files /dev/null and b/media/art_guide.png differ diff --git a/banner.png b/media/banner.png similarity index 100% rename from banner.png rename to media/banner.png diff --git a/favicon.ico b/media/favicon.ico similarity index 100% rename from favicon.ico rename to media/favicon.ico diff --git a/logo.png b/media/logo.png similarity index 100% rename from logo.png rename to media/logo.png