diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-02-13 18:03:28 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-02-13 18:03:28 -0300 |
commit | 58cda02a389759d18176216c06f375d364cefef1 (patch) | |
tree | 4102902585d12ea6807ceaee1370136d29b601e1 /core/os/os.cpp | |
parent | 1adc330b68b1f6ca18aac05daf88c7d4d757fd0a (diff) | |
download | redot-engine-58cda02a389759d18176216c06f375d364cefef1.tar.gz |
-fixed export templates not loading/exporting on Windows
-fixed TouchScreenButton with stretch2d
-fixed(?) OSX crash on startup (test!!)
-compilation fixes on windows
-CollisionPolygon editor works again
-find buttons en find dialog
-TileMap editor cleanup (removed "error", made nicer)
-viewport flicker fixed
-make .scn default extension for saving scenes
-export the rest of the network classes to gdscript
Diffstat (limited to 'core/os/os.cpp')
-rw-r--r-- | core/os/os.cpp | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp index 1ee87099a2..141d5f2b58 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -425,8 +425,25 @@ int OS::get_processor_count() const { return 1; } -void OS::set_mouse_mode(MouseMode p_mode) { +Error OS::native_video_play(String p_path) { + + return FAILED; +}; + +bool OS::native_video_is_playing() { + + return false; +}; +void OS::native_video_pause() { + +}; + +void OS::native_video_stop() { + +}; + +void OS::set_mouse_mode(MouseMode p_mode) { } |