- Mar 22, 2020
- 151
- 234
Maybe you should give a report to the mod that this game is actually updated(even it is just rework/bugfix). It will make this thread appear in the latest update again and make more people discover this game.Version 0.2 TESTER is available!
This is not an exception. It is bad coding/planning. The dev is using the show function of the renpy for the videos. I don't think he knows that if you use one Show function after another they stack. Meaning while one video is being played, another one is being played in the BG. And honestly, the game comes with a lot of basic issues...BlazingBob i dunno if this is a bug but i'm experiencing almost 100% cpu usage and crippling my laptop performance when the sex scene came up. this is the first time it happened while playing AVNs.
edit: checked also with my pc, how tf is this game eating 70% of my cpu? is this a freaking AAA game?
this game eats more resources until the sex scene stops. reaches 10% from the start up to 80% of my cpu until the climax
View attachment 2090433
View attachment 2090437
View attachment 2090439
Awww.... become the superhero you were always meant to be!
Hey ! I confirm that I have the same problem during lewd scenes. And I'm not running it on a potato btw. You can see that the CPU usage is increasing everytime there is a new animation in a lewd scene. Never seen that before in a VN.BlazingBob i dunno if this is a bug but i'm experiencing almost 100% cpu usage and crippling my laptop performance when the sex scene came up. this is the first time it happened while playing AVNs.
edit: checked also with my pc, how tf is this game eating 70% of my cpu? is this a freaking AAA game?
this game eats more resources until the sex scene stops. reaches 10% from the start up to 80% of my cpu until the climax
View attachment 2090433
View attachment 2090437
View attachment 2090439
Yep, this is test-release with improvments for the 0.1 content and a small amount of chapter 2 content.So...is this release supposed to end really abruptly after you meet Jamiah in her room?
MC internal monologues : "You sure did a damn good job" and it just cuts back to the main menu screen. Compared to how V0.1 ended this seemed really short and unfinished.
Ah, alright thanks.Yep, this is test-release with improvments for the 0.1 content and a small amount of chapter 2 content.
I've been running into devs doing it pretty often. BlazingBob here is the way to fix your animations:This is not an exception. It is bad coding/planning. The dev is using the show function of the renpy for the videos. I don't think he knows that if you use one Show function after another they stack. Meaning while one video is being played, another one is being played in the BG. And honestly, the game comes with a lot of basic issues...
animations are gonna lag on any device that isn't powerful because you're not hiding the animations after you start the next one in the sequence.
The four statements that work with images/animations are:
Basically, you're effectively making your entire sex scene a single layer when you use 'show', so every new animation is just piling onto the previous one instead of replacing the currently playing animation, making both the previous animation(s) and current use system resources all at once.
- image - defines a new image.
- show - shows an image on a layer.
- scene - clears a layer, and optionally shows an image on that layer.
- hide - removes an image from a layer.
This is how you do it so that you don't have a bunch of animations running in the background during sex scenes.
show animation 1 with dissolve
show animation 2 with dissolve
hide animation 1
etc.
Alternatively, the best solution is just to replace 'show' with 'scene' which ends the previous animation before starting the new one automatically.