diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-04-14 20:39:13 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-04-14 20:39:13 +0200 |
commit | ea46639e22b83ff18d7b85c67b732f6e82ae7df3 (patch) | |
tree | 1e2ba6990f077f78a0aabfe25e30f485fb3a8ed5 /doc/classes | |
parent | 9e0f87359b9ae596fa99022ccdad015bd74680ae (diff) |
Print a warning when trying to seek in VideoPlayer
Seeking isn't implemented in built-in video formats and can only
be supported in GDNative-provided video formats.
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/VideoPlayer.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/classes/VideoPlayer.xml b/doc/classes/VideoPlayer.xml index b2ab356b0d..d905ce4054 100644 --- a/doc/classes/VideoPlayer.xml +++ b/doc/classes/VideoPlayer.xml @@ -74,6 +74,7 @@ </member> <member name="stream_position" type="float" setter="set_stream_position" getter="get_stream_position"> The current position of the stream, in seconds. + [b]Note:[/b] Changing this value won't have any effect as seeking is not implemented yet, except in video formats implemented by a GDNative add-on. </member> <member name="volume" type="float" setter="set_volume" getter="get_volume"> Audio volume as a linear value. |