Guide:Game Making Tools Wiki: Difference between revisions
(Added note on displaying code blocks, and added some space around the <hr> in the infoboxes section (with <br>s).) |
(→Infoboxes: updating for new image kinds) |
||
Line 41: | Line 41: | ||
==Infoboxes== | ==Infoboxes== | ||
To add an image you can use code like this: | Images come in three kinds: | ||
* 'logo' for software logos, | |||
* 'screenshot' for images of the software, | |||
* and 'image' which is both a fallback to the older infobox design and for misc. images. | |||
To add an image you can use code like this, though use your discretions as all of it may not be needed: | |||
<nowiki>[[File:filename.extension|220px|thumb|left]]</nowiki> | <nowiki>[[File:filename.extension|220px|thumb|left]]</nowiki> | ||
Line 64: | Line 70: | ||
* [[Template:infobox_software|infobox_software]] - For [[:Category:Game Builder|game builder]] software. | * [[Template:infobox_software|infobox_software]] - For [[:Category:Game Builder|game builder]] software. | ||
<nowiki>{{ infobox_software | <nowiki>{{ infobox_software | ||
| title = | | title = | ||
| logo = | |||
| screenshot = | |||
| image = | | image = | ||
| release_date = | | release_date = | ||
Line 74: | Line 82: | ||
* [[Template:infobox_assetsoftware|infobox_assetsoftware]] - For [[:Category:Asset_Creation|asset creation]] software. | * [[Template:infobox_assetsoftware|infobox_assetsoftware]] - For [[:Category:Asset_Creation|asset creation]] software. | ||
<nowiki>{{ infobox_assetsoftware | <nowiki>{{ infobox_assetsoftware | ||
| title = | | title = | ||
| logo = | |||
| screenshot = | |||
| image = | | image = | ||
| release_date = | | release_date = | ||
Line 85: | Line 95: | ||
* [[Template:infobox_leveleditor|infobox_leveleditor]] - For [[:Category:Level_Editor|level editors]]. | * [[Template:infobox_leveleditor|infobox_leveleditor]] - For [[:Category:Level_Editor|level editors]]. | ||
<nowiki>{{ infobox_leveleditor | <nowiki>{{ infobox_leveleditor | ||
| title = | | title = | ||
| logo = | |||
| screenshot = | |||
| image = | | image = | ||
| release_date = | | release_date = |
Revision as of 03:52, 15 April 2018
Rough guide to keeping things looking uniform.
Feel free to discuss anything on this page, and make suggestions if you think there are better ways of doing things.
Code
For blocks of code you can use the <pre> tag. For inline code snippets, or keyboard/inputs you can use <code>. A bit wrong-sounding, I know!
Colours
The colours used in the logo are: #ed1c24, #ffaec9 and #fff200
Categories
Categories should be on the bottom of a page.
The order is: Software kind, 2-D/3-D, genre, x, operating system. 'X' being space for whatever else.
[[Category:Game Builder]][[Category:2-D]][[Category:Adventure]][[Category:Browser]][[Category:Browser_Export]]
Some times I use returns after groupings of cetegories to make it a bit easier to read, this doesn't effect how it appears on the page.
Images
To keep things organised please start an images filename with something like the name of the section it's used in, then an underscore, then a description of the file.
EG:
blender_decimate.png
Galleries
I've just inserted my first gallery! I think they look a bit better without the lines, but otherwise use them as you see fit.
I used this simple code:
<gallery mode="packed"> File:filename.png|caption File:filename.png|caption File:filename.png|caption </gallery>
Does seem to centre it though. Would look nicer left-aligned.
Captions can have links and w/e
Infoboxes
Images come in three kinds:
- 'logo' for software logos,
- 'screenshot' for images of the software,
- and 'image' which is both a fallback to the older infobox design and for misc. images.
To add an image you can use code like this, though use your discretions as all of it may not be needed:
[[File:filename.extension|220px|thumb|left]]
Category links for fields like 'runs_on' and 'exports_to' looks like this:
[[:Category:Linux_export|]]
To add a bullet point / list simple make a new line and enter and asterix and a space, then your text
| item5_description = text text text * text text text
To make a new line without a bullet use <br>
Current infoboxes are:
- infobox_software - For game builder software.
{{ infobox_software | title = | logo = | screenshot = | image = | release_date = | made_by = | runs_on = | exports_to = }}
- infobox_assetsoftware - For asset creation software.
{{ infobox_assetsoftware | title = | logo = | screenshot = | image = | release_date = | made_by = | runs_on = | imports = | exports = }}
- infobox_leveleditor - For level editors.
{{ infobox_leveleditor | title = | logo = | screenshot = | image = | release_date = | made_by = | availability = }}
- infobox_updates - For the front page.
{{ infobox_updates | item1 = | item1_date = | item1_description = | item2 = | item2_date = | item2_description = | item3 = | item3_date = | item3_description = | item4 = | item4_date = | item4_description = | item5 = | item5_date = | item5_description = }}