Skip to content

Commit

Permalink
Mobile export info
Browse files Browse the repository at this point in the history
  • Loading branch information
pkdawson committed Oct 27, 2023
1 parent 2e706a7 commit e47f122
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,18 @@ This is the rest of the public API. You typically won't need to call any of thes

That's about it. Everything else is provided by ImGui itself, via ImGui.NET.

### Mobile export

ImGui.NET does not support iOS or Android, so all ImGui related code should be conditionally disabled if you want to export for these platforms. For example:

```csharp
#if !GODOT_MOBILE
ImGui.Begin("my window");
// ...
ImGui.End();
#endif
```


## Package managers

Expand Down

0 comments on commit e47f122

Please sign in to comment.