Skip to content

Commit 16d3a98

Browse files
committed
Bump
1 parent 84d3d0f commit 16d3a98

File tree

6 files changed

+75
-0
lines changed

6 files changed

+75
-0
lines changed

Moreinfo/Notices.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Notices
2+
3+
The following functions are temporarily not added:
4+
5+
New in GameMaker 8.1:
6+
7+
draw_self() This command is exactly the same as draw_sprite_ext() except it will use the instances own variables to draw itself (x,y, scale, angle etc.) This provides the same action as if the instance was draw without a script.
8+
9+
get_function_address('function_name') Returns the address of a GameMaker function. This can be passed to DLL's so the can call directly into GameMaker.
10+
11+
.gmk and .gm81 file is GameMaker 8.1 project file!
12+
The file can not be edited by the text editor!
13+
This is just to distinguish the GameMaker version.

Moreinfo/QA.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Q&A
2+
3+
> 1, Why delete function information?
4+
5+
~~Because I think the effect of displaying function information on code snippets is very poor, I would like to implement it after I make a language server, I started to remove the function information in the code snippet from 1.3.3~~
6+
7+
In 1.4.0, a language server has been made and the rest will be added in subsequent releases
8+
9+
> 2, About GMLive
10+
11+
In 1.3.4, I add `GMLive` syntaxes, but I do not have this plugin, so it does not have any tests.

Moreinfo/Tasks.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Tasks
2+
3+
- [ ] Completing GameMaker:Studio's snippet (about 95% now).
4+
- [ ] Completing GameMaker 8.1's snippet (about 85% now).
5+
- [x] Language Server.
6+
- [ ] Debugger.

Moreinfo/Thirdparty.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Third-party plugins support
2+
3+
In 1.6.0 this feature is removed in this extension, an new extension will released after.
4+
5+
GML Support currently provides support for the following plugins:
6+
7+
Plugins | Syntax highlighting | Code typings | Remarks
8+
:--: | :-----: | :----:| :--:
9+
[GMLive](https://yal.cc/r/17/gmlive/) | ✔ | ✘ |
10+
[MaizeMusic](http://www.magecorn.com/p/254.shtml) | ✔ | ✔ | Chinese
11+
[FoxWriting](https://www.noisyfox.io/fox-writing-gamemaker.html) | ✔ | ✔ | Chinese
12+
[FoxWinShave](https://www.noisyfox.io/31.html) | ✔ | ✔ | Chinese
13+
14+
I also welcome your contribution to other plug-in syntax and typings, the file in the project repository is `thirdparty.json` in the` syntaxes` folder.

Moreinfo/_navbar.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
- About me
2+
- [My homepage](https://me.liaronce.win)
3+
- [My blog](https://www.liaronce.win)
4+
5+
- Translations
6+
- [:cn: 中文](/zh-cn/)
7+
- [:uk: English](/)

Moreinfo/_sidebar.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
- Getting started
2+
3+
- [Start](Usage/Start.md)
4+
- [GML Support with GameMaker 8.1](Usage/gm81.md)
5+
- [GML Support with GameMaker Studio](Usage/gms.md)
6+
- [GML Support with GameMaker Studio 2](Usage/gms2.md)
7+
- [GML Support with LateralGM](Usage/lgm.md)
8+
9+
- Customization
10+
11+
- [Add own syntax highlighting](OwnSyntax.md)
12+
13+
- Available Data
14+
15+
- [Introduction](AvailableData/Index.md)
16+
17+
- [Contribute](Contribute.md)
18+
19+
- More info
20+
21+
- [Third-party](Moreinfo/Thirdparty.md)
22+
- [Tasks](Moreinfo/Tasks.md)
23+
- [Q&A](Moreinfo/QA.md)
24+
- [Notices](Moreinfo/Notices.md)

0 commit comments

Comments
 (0)