Skip to content

Commit 55d8efe

Browse files
authored
Merge pull request #25 from noam-stein/master
fix broken link in calling-gdscript
2 parents 9276803 + 697bec6 commit 55d8efe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rust-binding/calling-gdscript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Now, it's not possible to directly return `Enemy` instances in exported methods,
5454
#[export]
5555
fn create_enemy(&mut self, _owner: &Node) -> Enemy {...}
5656
```
57-
Instead, you can wrap the object in a `Instance<Enemy, Unique>`, using `emplace()`. For an in-depth explanation of the `Instance` class, read [this section](http://localhost:3000/gdnative-overview/wrappers.html#instance-reference-with-attached-rust-class).
57+
Instead, you can wrap the object in a `Instance<Enemy, Unique>`, using `emplace()`. For an in-depth explanation of the `Instance` class, read [this section](../gdnative-overview/wrappers.md#instance-reference-with-attached-rust-class).
5858
```rust
5959
#[export]
6060
fn create_enemy(

0 commit comments

Comments
 (0)