1
0
Fork 0
mirror of https://github.com/Acamaeda/The-Modding-Tree.git synced 2024-11-21 16:13:55 +00:00

Added a misc documentation page

This commit is contained in:
Harley White 2021-06-07 20:25:15 -04:00
parent 4bdd9004c4
commit 99a9c2344e
3 changed files with 8 additions and 1 deletions

View file

@ -1,5 +1,6 @@
# The Modding Tree changelog:
- Broke the css file down into many files to make it easier to find and customize what matters. If you already have custom CSS, keep that and ignore the new ones maybe?
- Added buyable and clickable trees.
## v2.6.1 - 6/7/21

View file

@ -34,9 +34,10 @@ While reading this documentation, the following key will be used when describing
- [Basic layer breakdown](basic-layer-breakdown.md): Breaking down the components of a layer with minimal features.
- [Layer features](layer-features.md): Explanations of all of the different properties that you can give a layer.
- [Custom Tab Layouts](custom-tab-layouts.md): An optional way to give your tabs a different layout. You can even create entirely new components to use.
- [Custom game layouts](trees-and-tree-customization.md): You can get rid of the tree tab, add buttons and other things to the tree,
- [Custom Game Layouts](trees-and-tree-customization.md): You can get rid of the tree tab, add buttons and other things to the tree,
or even customize the tab's layout like a layer tab.
- [Updating TMT](tutorials/updating-tmt.md): Using Github Desktop to update your mod's version of TMT.
- [Other Things](other.md): Other neat features that TMT has that don't merit their own page.
### Common components

5
docs/other.md Normal file
View file

@ -0,0 +1,5 @@
# Other Things
## CSS
A good way to give your game a unique feel is to customize the appearance of it. Modifying the CSS files helps you to do that on a global level. The CSS is broken up into several files to make it easier to find what is relevant to you.
CSS tip: Every component is automatically given a CSS class with the same name as its layer id. You can use this toapply something specifically for a single layer! You can also combine classes, such as .p.achievement or .c.locked, to change specific things in specific layers.