I want to make a little suggestion to the game. It's easy to implement, but very tedious to do, so... make whatever you want with this suggestion.
I'm a bitch for completion. I want to see everything a game offers to me. But this is something that it's really hard if the game you're playing doesn't have any way to track what did you see and what not.
So, my suggestion is make the game track if you encountered every scene, and to display a scene list so you can look for missed scenes.
This is how I would make it: create an array of objects composed of "scene name" as a string, "viewed" as a datetime, "count" as an integer, "hidden" as a boolean, and "group" as a link to an array of scene groups.
Then have an array of scene groups, for example "Living room - videogames", "Handstand", "Tails", etc.
"scene name" is self explanatory.
"viewed" is null when you haven't yet encountered this scene, and has the date when you first encountered it.
"count" is how many times you encountered this scene.
"hidden" makes the "scene name" in the list hidden (or rendered as ???) in the scene list while count=0, perfect for not spoiling certain scenes until you have seen them.
"group" is to have the scenes grouped as a tree when shown to the player.
The rest of the implementation is fairly obvious. The tedious part is looking at all the game code, finding every scene, adding the data for the arrays, and adding the all the calls to the function to manage the "scene viewed"