Merge pull request #99010 from Hilderin/embedding-game-process
Embed game process in editor
This commit is contained in:
commit
a11364d1e6
44 changed files with 1712 additions and 134 deletions
|
|
@ -1906,6 +1906,10 @@ bool Engine::is_editor_hint() const {
|
|||
return ::Engine::get_singleton()->is_editor_hint();
|
||||
}
|
||||
|
||||
bool Engine::is_embedded_in_editor() const {
|
||||
return ::Engine::get_singleton()->is_embedded_in_editor();
|
||||
}
|
||||
|
||||
String Engine::get_write_movie_path() const {
|
||||
return ::Engine::get_singleton()->get_write_movie_path();
|
||||
}
|
||||
|
|
@ -1983,6 +1987,7 @@ void Engine::_bind_methods() {
|
|||
ClassDB::bind_method(D_METHOD("get_script_language", "index"), &Engine::get_script_language);
|
||||
|
||||
ClassDB::bind_method(D_METHOD("is_editor_hint"), &Engine::is_editor_hint);
|
||||
ClassDB::bind_method(D_METHOD("is_embedded_in_editor"), &Engine::is_embedded_in_editor);
|
||||
|
||||
ClassDB::bind_method(D_METHOD("get_write_movie_path"), &Engine::get_write_movie_path);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue