Guide:Bipsi: Difference between revisions
From Game Making Tools Wiki
(Started event quick reference) |
(→Events: transparent/tag, js section) |
||
Line 5: | Line 5: | ||
==Events== | ==Events== | ||
===Quick Reference=== | |||
For better explanations see the [https://kool.tools/bipsi/user-guide.pdf user guide], but I've found it helpful to keep this quick reference list. | For better explanations see the [https://kool.tools/bipsi/user-guide.pdf user guide], but I've found it helpful to keep this quick reference list. | ||
{| class="wikitable sortable" | {| class="wikitable sortable" | ||
! | ! Field !! Type !! Description | ||
|- | |- | ||
| exit || location || Move player to another place. | | exit || location || Move player to another place. | ||
Line 23: | Line 24: | ||
|- | |- | ||
| solid || tag || Makes event impassable. | | solid || tag || Makes event impassable. | ||
|- | |||
| touch || javascript || Add your own custom code. See §[[#JavaScript|JavaScript]] for some examples. | |||
|- | |||
| transparent || tag || Makes background colour of tile transparent. | |||
|- | |- | ||
| page-color || text || Changes page's background colour. Use [https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#color_keywords CSS colour names] only. | | page-color || text || Changes page's background colour. Use [https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#color_keywords CSS colour names] only. | ||
|} | |} | ||
===JavaScript=== | |||
Some examples of JavaScript you can insert. See the [https://kool.tools/bipsi/scripting-guide.pdf scripting guide] for more information. | |||
Please add more! | |||
==See Also== | ==See Also== |
Revision as of 10:20, 24 August 2021
Keyboard Shortcuts
- The arrow keys will move your selection, indicated by a thick, white outline.
- Q, W, E, R, T selects tabs in order.
- Draw Room tab: Holding Alt will use eyedropper/pick tile.
Events
Quick Reference
For better explanations see the user guide, but I've found it helpful to keep this quick reference list.
Field | Type | Description |
---|---|---|
exit | location | Move player to another place. |
graphic | tile | Sets event's graphic. |
is-player | tag | Tells game where to start the player. Not sure if it's useful later. |
one-time | tag | Run event only once. |
say | dialogue | Shows text in a dialogue box. |
set-avatar | tile | Changes player's graphic. |
solid | tag | Makes event impassable. |
touch | javascript | Add your own custom code. See §JavaScript for some examples. |
transparent | tag | Makes background colour of tile transparent. |
page-color | text | Changes page's background colour. Use CSS colour names only. |
JavaScript
Some examples of JavaScript you can insert. See the scripting guide for more information.
Please add more!
See Also
- Bipsi
- bipsi game maker user guide - Game making beginner friendly! PDF format.
- bipsi game maker scripting guide - Guide for advanced scripting. Also PDF.