Rename get_position => get_playback_position and seek_pos => seek on audio classes

This commit is contained in:
Marcelo Fernandez
2017-09-21 00:31:36 -03:00
committed by Rémi Verschelde
parent 650e0cf318
commit 46af050e93
25 changed files with 60 additions and 54 deletions

View File

@@ -282,7 +282,7 @@ float VideoPlayer::get_stream_position() const {
if (playback.is_null())
return 0;
return playback->get_position();
return playback->get_playback_position();
};
Ref<Texture> VideoPlayer::get_video_texture() {