-
Notifications
You must be signed in to change notification settings - Fork 42
Add Tags tutorial + small typo fix #78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
OmgRod
wants to merge
23
commits into
geode-sdk:main
Choose a base branch
from
OmgRod:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+80
−26
Open
Changes from 10 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
0bd8e07
Added Geometry Dash category + Tags tutorial
OmgRod f7ff48f
removed cname. i dont like it
OmgRod 0e6e8a9
fixes
OmgRod 912939c
Merge branch 'geode-sdk:main' into main
OmgRod 5b18d99
Update ios.md
OmgRod abb4a65
Create CNAME
OmgRod ebb29ee
Update tags.md
OmgRod d5a610f
Update tags.md
OmgRod fb1b179
Update popup.md
OmgRod 799d1ce
Update popup.md
OmgRod 90be915
1st change requested by ery
OmgRod 2d563d9
2nd change requested by ery
OmgRod 8f9823b
Update tags.md
OmgRod d8c437d
4th and 5th change requested by ery
OmgRod f32d5d6
6th change requested by ery
OmgRod acd27af
1st new change requested by ery
OmgRod 1dc6993
2nd change requested by ery (with my own change too)
OmgRod 14a1914
3rd change requested by ery
OmgRod f112369
4th change requested by ery
OmgRod ca0ea79
5th change requested by ery
OmgRod 118ff3f
7th change requested by ery
OmgRod caea721
8th change requested by ery
OmgRod 04eb042
Merge branch 'geode-sdk:main' into main
OmgRod File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 +1 @@ | ||
| docs.geode-sdk.org | ||
| docs.geode-sdk.org |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| --- | ||
| title: Geometry Dash | ||
| order: 6 | ||
| --- | ||
|
|
||
| These pages contain documentation for Geometry Dash. |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,69 @@ | ||
| --- | ||
| title: Tags | ||
| order: 1 | ||
| --- | ||
|
|
||
| # Tags | ||
|
|
||
| In Geometry Dash, there are tags you can use for things such as `FLAlertLayer` or `DialogLayer`. In this documentation, I will show you how to use these tags: | ||
|
|
||
| ## Color | ||
|
|
||
| In Geometry Dash, there are color tags, which change the color of text. Here's a list of all the tags: | ||
|
|
||
| | **Tag** | **Color Code** | **Example** | | ||
| |---------|----------------|---------------------------------------| | ||
| | `<cb>` | `0x4A52E1` | <p style="color: #4A52E1;">Sample</p> | | ||
| | `<cg>` | `0x40E348` | <p style="color: #40E348;">Sample</p> | | ||
| | `<cl>` | `0x60ABEF` | <p style="color: #60ABEF;">Sample</p> | | ||
| | `<cj>` | `0x32C8FF` | <p style="color: #32C8FF;">Sample</p> | | ||
| | `<cy>` | `0xFFFF00` | <p style="color: #FFFF00;">Sample</p> | | ||
| | `<co>` | `0xFF5A4B` | <p style="color: #FF5A4B;">Sample</p> | | ||
| | `<cr>` | `0xFF5A5A` | <p style="color: #FF5A5A;">Sample</p> | | ||
| | `<cp>` | `0xFF00FF` | <p style="color: #FF00FF;">Sample</p> | | ||
| | `<ca>` | `0x9632FF` | <p style="color: #9632FF;">Sample</p> | | ||
| | `<cd>` | `0xFF96FF` | <p style="color: #FF96FF;">Sample</p> | | ||
| | `<cc>` | `0xFFFF96` | <p style="color: #FFFF96;">Sample</p> | | ||
| | `<cf>` | `0x96FFFF` | <p style="color: #96FFFF;">Sample</p> | | ||
| | `<cs>` | `0xFFDC41` | <p style="color: #FFDC41;">Sample</p> | | ||
| | `<c>` | `0xFF0000` | <p style="color: #FF0000;">Sample</p> | | ||
OmgRod marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| To use these tags, follow the syntax below: | ||
OmgRod marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| ``` | ||
| "Welcome to my <cr>LAIR</c>..." | ||
OmgRod marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ``` | ||
|
|
||
| By using `</c>`, you are closing the tag, and it doesn't matter which color tag it is. It will always be `</c>`. | ||
OmgRod marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ## Delay | ||
|
|
||
| In Geometry Dash, there are also delay tags to wait a certain amount of centiseconds (1/100 of a second) before more text appearing. To use this, follow the example below: | ||
OmgRod marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ``` | ||
| Wait!<d040> You shouldn't go there<d500>.<d500>.<d500>. | ||
| ``` | ||
|
|
||
| In this example, the tag `<d...>` is used. The number next to the `<d` specifies the number of milliseconds to wait. However, this number must be 3 digits. The GIF below shows what this looks like in-game (GIF from GDDocs): | ||
OmgRod marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
|  | ||
|
|
||
| ## Shake | ||
|
|
||
| Shake tags make text shake. To use this, please follow the example below: | ||
OmgRod marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ``` | ||
| <co>I HAVE SAID TOO MUCH! QUICKLY TO THE <s260>CHOPPER!</s></c> | ||
| ``` | ||
|
|
||
| In this example, the syntax for the shake tag is similar to the syntax of the delay tag. This is however based on the intensity of the shaking. For reference, the example above looks like this in the game (GIF from GDDocs): | ||
OmgRod marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
OmgRod marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
|  | ||
|
|
||
| # Instant/Fade | ||
|
|
||
| Fade Tags are used to fade in a block of text on screen instead of making it appear character by character. Similarly to colour tags, Fade tags have a start and end tag to denote which piece of text should appear instantly. The number is specified in centiseconds, which is 1/100th of a second. | ||
|
|
||
| Usage: `Hello, <i100>world!</i>` | ||
|
|
||
|  | ||
This file contains hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.