Ren'Py Can I add video on screens? (not master layer)

Higurashika

Well-Known Member
Nov 15, 2018
1,374
1,975
Hey. Can I add video on stat screen or inventory screen? Because it doesn't support "show" operator and "add" doesn't work with video formats -__-
 

anne O'nymous

I'm not grumpy, I'm just coded that way.
Modder
Donor
Respected User
Jun 10, 2017
10,302
15,172
[...] and "add" doesn't work with video formats -__-
Since when ?

Python:
image movie1 = Movie( play="whatever/movie.ext" )

screen whatever():
    add "movie1"
works perfectly well.