@@ -17,8 +17,11 @@ Its _GDExtension_ API allows integrating third-party languages and libraries.
17
17
> * No stability guarantees. APIs will break frequently (for releases, we try to take SemVer seriously though).
18
18
> Resolving the above two points has currently more weight than a stable API.
19
19
20
- So we do not recommend building a larger project in GDExtension-Rust yet.
21
- However, the library can serve as a playground for experimenting.
20
+ We do not recommend building a larger project in GDExtension-Rust yet.
21
+ However, the library can serve as a playground for experimenting.
22
+
23
+ To get an overview of currently supported features, consult [ #24 ] ( https://github.com/godot-rust/gdextension/issues/24 ) .
24
+ At this point, there is ** no** support for Android, iOS or WASM. Contributions are very welcome!
22
25
23
26
24
27
## Getting started
@@ -57,7 +60,8 @@ To register the GDExtension library with Godot, you need to create two files rel
57
60
macos.64 = " res://../rust/target/debug/{my_ext}.dylib"
58
61
```
59
62
60
- 2. A second file `res://.godot/extension_list.cfg` simply lists the path to your first file:
63
+ 2. A second file `res://.godot/extension_list.cfg` should be generated once you open the Godot editor for the first time.
64
+ If not, you can also manually create it, simply containing the Godot path to your `.gdextension` file:
61
65
```
62
66
res://MyExt.gdextension
63
67
```
@@ -69,10 +73,7 @@ This integrates a small game with Godot and has all the necessary steps set up.
69
73
70
74
API documentation can be generated locally using `cargo doc -p godot --no-deps --open`.
71
75
72
- Support for macOS is still ongoing, there is currently **no** support for Android, iOS or WASM.
73
- Contributions in this regard are very welcome!
74
-
75
- If you need help, join our [Discord] server and ask in the `# help` channel!
76
+ If you need help, join our [Discord] server and ask in the `# help-gdextension` channel!
76
77
77
78
78
79
# # License
@@ -94,6 +95,6 @@ to talk to the developers in the `#gdext-dev` channel on [Discord]!
94
95
95
96
96
97
[Godot] : https://godotengine.org
97
- [`gdnative`] : https://github.com/godot-rust/godot-rust
98
+ [`gdnative`] : https://github.com/godot-rust/gdnative
98
99
[mpl] : https://www.mozilla.org/en-US/MPL/
99
100
[Discord] : https://discord.gg/aKUCJ8rJsc
0 commit comments