diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2016-05-04 15:15:51 +0200 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2016-05-04 15:35:09 +0200 |
commit | 1e752c01203b2560ef3ed28993aac9c98c053cb8 (patch) | |
tree | 91b5f82d04c9c872e544b8206d7914ebd7782120 /scene/3d/spatial_stream_player.cpp | |
parent | 2060e6616cb39362cddc3c57a94292896f9f4525 (diff) |
Fix wrong return and argument types in documentation
Diffstat (limited to 'scene/3d/spatial_stream_player.cpp')
-rw-r--r-- | scene/3d/spatial_stream_player.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/3d/spatial_stream_player.cpp b/scene/3d/spatial_stream_player.cpp index dfef0faf4b..11debb9bce 100644 --- a/scene/3d/spatial_stream_player.cpp +++ b/scene/3d/spatial_stream_player.cpp @@ -329,8 +329,8 @@ int SpatialStreamPlayer::get_buffering_msec() const{ void SpatialStreamPlayer::_bind_methods() { - ObjectTypeDB::bind_method(_MD("set_stream","stream:Stream"),&SpatialStreamPlayer::set_stream); - ObjectTypeDB::bind_method(_MD("get_stream:Stream"),&SpatialStreamPlayer::get_stream); + ObjectTypeDB::bind_method(_MD("set_stream","stream:AudioStream"),&SpatialStreamPlayer::set_stream); + ObjectTypeDB::bind_method(_MD("get_stream:AudioStream"),&SpatialStreamPlayer::get_stream); ObjectTypeDB::bind_method(_MD("play","offset"),&SpatialStreamPlayer::play,DEFVAL(0)); ObjectTypeDB::bind_method(_MD("stop"),&SpatialStreamPlayer::stop); |