Difference between revisions of "Manual:Config:Advanced"
(moved the config file example down to the example section where it should be) |
(rearrange page contents to improve readability) |
||
Line 7: | Line 7: | ||
---- | ---- | ||
− | = | + | =Configuration file structure= |
− | + | The basic structure of the vegastrike.config file is as follows: | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | The basic structure of the config file: | ||
<pre> | <pre> | ||
<vegaconfig> | <vegaconfig> | ||
− | + | <!-- this line is a comment --> | |
− | <!-- | ||
− | |||
− | --> | ||
<bindings> | <bindings> | ||
<bind key="i" modifier="none" command="Screenshot" /> | <bind key="i" modifier="none" command="Screenshot" /> | ||
− | |||
− | |||
</bindings> | </bindings> | ||
Line 32: | Line 20: | ||
<section name="unit"> | <section name="unit"> | ||
<color name="ship_ambient" r="0.3" g="0.3" b="0.3" a="1.0"/> | <color name="ship_ambient" r="0.3" g="0.3" b="0.3" a="1.0"/> | ||
− | |||
</section> | </section> | ||
</colors> | </colors> | ||
Line 45: | Line 32: | ||
</pre> | </pre> | ||
+ | As you can see, the configuration is separated into 3 parts, "bindings", "colors", and "variables". The "colors" and "variables" parts are each divided into sections. Learn more from the following pages: | ||
+ | * [[Manual:Config:Advanced:Bindings|Bindings]] | ||
+ | * [[Manual:Config:Advanced:Colors|Colors]] | ||
+ | * [[Manual:Config:Advanced:Variables|Variables]] | ||
= See also = | = See also = | ||
+ | * Find a simple configuration variable listing at the [[CONFVAR]] page. | ||
+ | |||
---- | ---- |
Revision as of 20:32, 29 September 2010
View this site in other languages: Deutsch – English – Français – Español – Polski – Italiano – Nederlands – Руccкий – 简体中文
Config | Config | Config:Advanced:Bindings |
Configuration file structure
The basic structure of the vegastrike.config file is as follows:
<vegaconfig> <!-- this line is a comment --> <bindings> <bind key="i" modifier="none" command="Screenshot" /> </bindings> <colors> <section name="unit"> <color name="ship_ambient" r="0.3" g="0.3" b="0.3" a="1.0"/> </section> </colors> <variables> <section name="data"> <var name="usingtemplates" value="false"/> </section> </variables> </vegaconfig>
As you can see, the configuration is separated into 3 parts, "bindings", "colors", and "variables". The "colors" and "variables" parts are each divided into sections. Learn more from the following pages:
See also
- Find a simple configuration variable listing at the CONFVAR page.
Config | Config | Config:Advanced:Bindings |