-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7e50aea
commit 73672b0
Showing
77 changed files
with
8,126 additions
and
1,598 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,49 @@ | ||
# WebGAL Doc | ||
# WebGAL Documentation | ||
|
||
## Some Information about WebGAL | ||
|
||
- [I want to know the latest news or give feedback](info) | ||
|
||
- [I want to contribute to the engine development or learn how to customize WebGAL](developers) | ||
|
||
- [I want to learn about the technical implementation of WebGAL engine](tech) | ||
|
||
- [I want to sponsor WebGAL](sponsor) | ||
|
||
- [I want to join the WebGAL team!](developers/joinus) | ||
|
||
## Game Development Guide | ||
|
||
- [How to start making a WebGAL game?](getting-started.md) | ||
- [How to start making a WebGAL?](getting-started.md) | ||
|
||
- [Manage game resources](resources.md) | ||
- [Managing Game Resources](resources.md) | ||
|
||
- [Edit game config](config.md) | ||
- [Editing Game Configuration](config.md) | ||
|
||
- [How to deploy or publish my visual novel?](publish.md) | ||
|
||
- [FAQ](faq.md) | ||
- [Possible Problems and Solutions](faq.md) | ||
|
||
## WebGAL Script Tutorial | ||
|
||
- [Base](webgal-script/base.md) | ||
- [The Basics](webgal-script/base.md) | ||
|
||
- [Dialogue](webgal-script/dialogue.md) | ||
- [Dialogues](webgal-script/dialogue.md) | ||
|
||
- [Background and Figure](webgal-script/bg-and-figure.md) | ||
- [Backgrounds and Figures](webgal-script/bg-and-figure.md) | ||
|
||
- [Audio](webgal-script/audio.md) | ||
|
||
- [Video](webgal-script/video.md) | ||
|
||
- [Scenes and Branch](webgal-script/scenes.md) | ||
- [Scenes and Branches](webgal-script/scenes.md) | ||
|
||
- [Variable](webgal-script/variable.md) | ||
- [Variables](webgal-script/variable.md) | ||
|
||
- [Animation effect](webgal-script/animation.md) | ||
- [Animation Effects](webgal-script/animation.md) | ||
|
||
- [Special effect](webgal-script/special-effect.md) | ||
- [Special Effects](webgal-script/special-effect.md) | ||
|
||
## Stargazers over time | ||
|
||
[![Stargazers over time](https://starchart.cc/MakinoharaShoko/WebGAL.svg)](https://starchart.cc/MakinoharaShoko/WebGAL) | ||
[![Stargazers over time](https://starchart.cc/MakinoharaShoko/WebGAL.svg)](https://starchart.cc/MakinoharaShoko/WebGAL) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
# Edit game config | ||
# Edit Game Configuration | ||
|
||
Under the `game` folder, there is a file config.txt where you can fill in relevant information about your game (you can edit it directly using the visual editor). | ||
Under the `game` folder, there is a file named `config.txt`, you can fill in the relevant information of your game in this file (you can edit it directly using a graphical editor). | ||
|
||
| Parameters | Description | | ||
| :---------- | :---------------------------------------------- | | ||
| Parameter | Description | | ||
| :------------ | :----------------------------------------------- | | ||
| Game_name | Game name | | ||
| Game_key | Game identifier, 6-10 characters long, not to duplicate it with other games | | ||
| Title_img | Title image, placed in the `background` folder | | ||
| Title_bgm | title background music, placed in `bgm` folder | | ||
| Game_key | Game identification code, 6-10 characters in length, do not repeat with other games | | ||
| Title_img | Title picture, put it in the `background` folder | | ||
| Title_bgm | Title background music, put it in the `bgm` folder | | ||
| Game_Logo | Game Logo, multiple can be displayed, separated by \| | | ||
| Textbox_theme | Game dialog style, you can choose imss style or standard style | | ||
|
||
Below is a sample configuration file: | ||
The following is a sample configuration file: | ||
|
||
``` text | ||
Game_name:WebGAL; | ||
Game_key:0f33fdGr; | ||
Title_img:Title2.png; | ||
Title_bgm:summer.mp3; | ||
``` | ||
Title_img:Title.png; | ||
Title_bgm:夏影.mp3; | ||
Game_Logo:WebGalEnter.png|bg.png; | ||
Textbox_theme:imss; | ||
``` |
Oops, something went wrong.