Skip to main content

Movie

Movie playback can be controlled from scripts.

Properties

PropertyTypeDescription
FilenamestringFile path to the movie file. This file is NOT saved in the scene and must be present at the specified location on any computer that wishes to see it.
PlayingbooleanWhether or not the movie is playing
RepeatbooleanWhether to loop back and resume playback from the start
PositionnumberPosition through the movie playback
VolumenumberVolume of the sound in the movie (1.0 = normal volume)

Example

-- Drag/Drop section BEGINS - Do not edit between BEGINS and ENDS.
local Movie = __Script.dragdrop.Movie
-- Drag/Drop section ENDS

-- Toggle the playing state of the movie
Movie.Playing = not Movie.Playing

-- Print the movie details
print("Filename = ", Movie.Filename)
print("Repeat = ", Movie.Repeat)
print("Position = ", Movie.Position)