Chrisdarock19
Well-Known Member
- Oct 15, 2018
 
- 1,452
 
- 2,044
 
- 461
 
If anyone else is wondering, lines 225-227 to be exact. Thanks.Huhuhu
I discovered that some animations were missing while making werewolf-witch puppies with Sofia. Turns out the file names in video.rpy had "grace" in them instead of "sofia" so after fixing that the animations showed up.
In video.rpy ("game" folder) find
and replace withPython:image cap_09_sofia_057_ani = Movie(play="video/cap_09/cap_09_grace_057_ani.webm", loop=True, group="monster", channel="sex_ani") image cap_09_sofia_058_ani = Movie(play="video/cap_09/cap_09_grace_058_ani.webm", loop=True, group="monster", channel="sex_ani") image cap_09_sofia_059_ani = Movie(play="video/cap_09/cap_09_grace_059_ani.webm", loop=True, group="monster", channel="sex_ani")
Python:image cap_09_sofia_057_ani = Movie(play="video/cap_09/cap_09_sofia_057_ani.webm", loop=True, group="monster", channel="sex_ani") image cap_09_sofia_058_ani = Movie(play="video/cap_09/cap_09_sofia_058_ani.webm", loop=True, group="monster", channel="sex_ani") image cap_09_sofia_059_ani = Movie(play="video/cap_09/cap_09_sofia_059_ani.webm", loop=True, group="monster", channel="sex_ani")