Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update winit_runner to use spawn_app for wasm32 target #16630

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

xuwaters
Copy link

@xuwaters xuwaters commented Dec 3, 2024

Objective

Solution

  • Use spawn_app instead of run_app for web platform in winit_runner as suggested in the document

Testing

  • Did you test these changes? If so, how?

Tested on web. Created a react app which renders the bevy WASM app and returns the disposer to JS. Js will call the disposer on component unmount to stop the app, the disposer sends a signal to a signal receiver in rust which exits the app like this:

fn handle_stop_signal(
    signal: NonSendMut<StopSignalReceiver>,
    window_entities: Query<(Entity, &Window)>,
    mut event_writer: EventWriter<WindowCloseRequested>,
) {
    if let Ok(_) = signal.try_recv() {
        for (entity, _window) in window_entities.iter() {
            info!("closing window entity: {:x}", entity.to_bits());
            event_writer.send(WindowCloseRequested { window: entity });
        }
    }
}
  • Are there any parts that need more testing?

    • No
  • How can other people (reviewers) test your changes? Is there anything specific they need to know?

    • Are all resources released after stopping the app like this? The WASM is still loaded, the LogPlugin complains on the logger re-initialization, but it's a warning anyway.
  • If relevant, what platforms did you test these changes on, and are there any important ones you can't test?

    • Tested the WASM version on web platform and the native version on MacOS.

Copy link
Contributor

github-actions bot commented Dec 3, 2024

Welcome, new contributor!

Please make sure you've read our contributing guide and we look forward to reviewing your pull request shortly ✨

@xuwaters xuwaters marked this pull request as ready for review December 3, 2024 23:31
@mnmaita mnmaita added O-Web Specific to web (WASM) builds A-App Bevy apps and plugins D-Straightforward Simple bug fixes and API improvements, docs, test and examples S-Needs-Review Needs reviewer attention (from anyone!) to move forward labels Dec 6, 2024
Co-authored-by: Martín Maita <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-App Bevy apps and plugins D-Straightforward Simple bug fixes and API improvements, docs, test and examples O-Web Specific to web (WASM) builds S-Needs-Review Needs reviewer attention (from anyone!) to move forward
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Allow winit event loop to be recreated on web / wasm
2 participants