Skip to content

Commit

Permalink
Merge pull request #437 from kkolyan/434_hot_reload
Browse files Browse the repository at this point in the history
Hot reload support
  • Loading branch information
Bromeon authored Oct 10, 2023
2 parents a92164b + 51500d9 commit f6dcf74
Show file tree
Hide file tree
Showing 6 changed files with 243 additions and 12 deletions.
4 changes: 2 additions & 2 deletions godot-core/src/init/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ fn gdext_on_level_init(level: InitLevel) {
}

/// Tasks needed to be done by gdext internally upon unloading an initialization level. Called after user code.
fn gdext_on_level_deinit(_level: InitLevel) {
// No logic at the moment.
fn gdext_on_level_deinit(level: InitLevel) {
crate::unregister_classes(level);
}

// ----------------------------------------------------------------------------------------------------------------------------------------------
Expand Down
Loading

0 comments on commit f6dcf74

Please sign in to comment.