diff options
author | 今井きなみ <kinami.imai@gmail.com> | 2023-06-05 01:14:19 +0200 |
---|---|---|
committer | 今井きなみ <kinami.imai@gmail.com> | 2023-06-05 21:37:11 +0200 |
commit | 15719e278ba5a9412efa20e1037e94e6086614b6 (patch) | |
tree | 9506f13ae28026c8fc3604746d39e506b8a0f3c1 /doc/classes/VideoStreamPlayer.xml | |
parent | 543750a1b3f5696f9ba8e91cb49dc7db05d2ae62 (diff) | |
download | redot-engine-15719e278ba5a9412efa20e1037e94e6086614b6.tar.gz |
Add loop property to VideoStreamPlayer
Diffstat (limited to 'doc/classes/VideoStreamPlayer.xml')
-rw-r--r-- | doc/classes/VideoStreamPlayer.xml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/classes/VideoStreamPlayer.xml b/doc/classes/VideoStreamPlayer.xml index 6ba2e42557..617706f3e3 100644 --- a/doc/classes/VideoStreamPlayer.xml +++ b/doc/classes/VideoStreamPlayer.xml @@ -61,6 +61,9 @@ <member name="expand" type="bool" setter="set_expand" getter="has_expand" default="false"> If [code]true[/code], the video scales to the control size. Otherwise, the control minimum size will be automatically adjusted to match the video stream's dimensions. </member> + <member name="loop" type="bool" setter="set_loop" getter="has_loop" default="false"> + If [code]true[/code], the video restarts when it reaches its end. + </member> <member name="paused" type="bool" setter="set_paused" getter="is_paused" default="false"> If [code]true[/code], the video is paused. </member> |