Skip to content

Commit

Permalink
Update bintr docs
Browse files Browse the repository at this point in the history
  • Loading branch information
fwsGonzo committed Dec 7, 2024
1 parent 4504f33 commit c41b852
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion docs/godot_docs/bintr.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ That's it.

This method of accelerating the performance of sandboxed programs is particularly attractive if you are targeting several (if not all) platforms that Godot can publish to. Every single platform will benefit from this feature in the same way, leaving no platform behind as a laggy mess.

JIT-compilers are very popular because they give instant performance increases without much user interaction, but can only leave you with a laggy mess when you're publishing for platforms that don't allow JIT. Most mobile- and console-platforms don't allow JIT at all.
JIT-compilers are very popular because they give instant performance increases without much user interaction, but can only leave you with a laggy mess when you're publishing for platforms that don't allow JIT. Web-, mobile- and console-platforms don't allow JIT at all.

You can [see here what happens](https://ask.vrchat.com/t/on-udon-2-soba-and-why-we-changed-directions/28484) when someone inexperienced picks an emulator that doesn't support the same performance characteristics across all supported platforms.

## Loading binary translations at run-time

Expand Down
2 changes: 1 addition & 1 deletion docs/godot_docs/cppapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ static inline void add_sandbox_api_function(std::string_view name, F *address,
std::string_view return_type, std::string_view args, std::string_view description = "");
#define ADD_API_FUNCTION(func, return_type, args, ...) \
add_sandbox_api_function(#func, func, return_type, args, ##__VA_ARGS__)

```
## Variant
Expand Down
2 changes: 1 addition & 1 deletion docs/godot_docs/modding.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ With the program loaded, the program in the Sandbox will go through an initializ

In theory, no modding API is needed and instead just a general map of the scene trees in the game is enough.

Using these methods we can create arbitrary Sandboxes from downloaded programs without going through resources or even files in Godot. While example uses a zip-file, that is just for demonstration.
Using these methods we can create arbitrary Sandboxes from downloaded programs without going through resources or even files in Godot. While the example uses a zip-file, that is just for demonstration.


## Crafting a public API
Expand Down

0 comments on commit c41b852

Please sign in to comment.