mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
Fix "Is Ended" condition for Video object (#1223)
This commit is contained in:
@@ -237,7 +237,7 @@ gdjs.VideoRuntimeObject.prototype.getDuration = function() {
|
||||
* Check if the video has ended.
|
||||
*/
|
||||
gdjs.VideoRuntimeObject.prototype.isEnded = function() {
|
||||
return !this._renderer.isEnded();
|
||||
return this._renderer.isEnded();
|
||||
};
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user