diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-12-07 09:24:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-07 09:24:35 +0100 |
commit | 3ed2bd13adaf7ee4dc162f623699d46fd3326775 (patch) | |
tree | de68f2a97490c462f5474ccd22266d4a19c82231 /doc/classes | |
parent | ca2b0f6e776ed3e8898093caa9706c8e176fe406 (diff) | |
parent | 7ac9ea75cc37ecf688441f05b6c36ef4ffeb7a77 (diff) |
Merge pull request #55670 from akien-mga/rename-videoplayer
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/VideoStream.xml | 2 | ||||
-rw-r--r-- | doc/classes/VideoStreamPlayer.xml (renamed from doc/classes/VideoPlayer.xml) | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/classes/VideoStream.xml b/doc/classes/VideoStream.xml index 39fefa8d95..5978e73ac5 100644 --- a/doc/classes/VideoStream.xml +++ b/doc/classes/VideoStream.xml @@ -4,7 +4,7 @@ Base resource for video streams. </brief_description> <description> - Base resource type for all video streams. Classes that derive from [VideoStream] can all be used as resource types to play back videos in [VideoPlayer]. + Base resource type for all video streams. Classes that derive from [VideoStream] can all be used as resource types to play back videos in [VideoStreamPlayer]. </description> <tutorials> </tutorials> diff --git a/doc/classes/VideoPlayer.xml b/doc/classes/VideoStreamPlayer.xml index c8590988f5..3aa9a8a295 100644 --- a/doc/classes/VideoPlayer.xml +++ b/doc/classes/VideoStreamPlayer.xml @@ -1,12 +1,12 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class name="VideoPlayer" inherits="Control" version="4.0"> +<class name="VideoStreamPlayer" inherits="Control" version="4.0"> <brief_description> Control for playing video streams. </brief_description> <description> Control node for playing video streams using [VideoStream] resources. Supported video formats are [url=https://www.theora.org/]Ogg Theora[/url] ([code].ogv[/code], [VideoStreamTheora]) and any format exposed via a GDNative plugin using [VideoStreamGDNative]. - [b]Note:[/b] Due to a bug, VideoPlayer does not support localization remapping yet. + [b]Note:[/b] Due to a bug, VideoStreamPlayer does not support localization remapping yet. [b]Warning:[/b] On HTML5, video playback [i]will[/i] perform poorly due to missing architecture-specific assembly optimizations. </description> <tutorials> |