- Mar 30, 2022
- 107
- 51
Thanks for sharing. I really hope we will see something soon.Some recent development on their Discord server:
View attachment 4085096
The part about exhausting themself by sitting at their desk might be related to their heart surgery, but I dunno.
It's a known issue for like forever now.Anybody else got this problem where the video's don't seem to really.. play smoothly? Almost like the game stutters?
I'm on a i7 3770, 16ram, gtx 1060 6gb. Don't know if my PC for what ever reason can't keep up.
Anybody else got this problem where the video's don't seem to really.. play smoothly? Almost like the game stutters?
I'm on a i7 3770, 16ram, gtx 1060 6gb. Don't know if my PC for what ever reason can't keep up.
By the way, the developer returned to his patreon and asking what video configuration would peopleIt's a known issue for like forever now.
2K 120 FPSBy the way, the developer returned to his patreon and asking what video configuration would peopleYou must be registered to see the links. Options are 4K 60 FPS and 2K 120 FPS (variant 4K 120 FPS is apparently not supported by Ren'Py).
Through I'm not sure if he is going to fix (re-encode?) videos that we already have or if it's a question about future updates...
Anybody else got this problem where the video's don't seem to really play smoothly? Almost like the game stutters?
I'm on an i7 3770, 16 ram, GTX 1060, 6 GB. Don't know if my PC, for whatever reason, can't keep up.
Can you tell me which videos you are referring to, or at least post a screenshot? I have several theories, such as issues with resolution, FPS, the new AV1 encoding, or the renpy code. However, I need to know which videos are causing the problem so I can pinpoint and fix them. Videos play smoothly for me since I have a powerful system. I'd also like to know if you were skipping scenes when the stutter occurs, because Renpy preloads the scene when you play at a normal pace. If you don't allow time for preloading, like when skipping or clicking too fast, it will stutter.It's a known issue for like forever now.
I'm sorry to say, but everything stutters for me. Even the menu screen. The character breathes, then she moves left (or right) and stutters). Same with almost every other scene in the game. I get like 1-2 seconds of no stutter followed by stutters and then again the cycle repeats. (from the eye test, it kind of looks like 5 FPS when it stutters).Can you tell me which videos you are referring to, or at least post a screenshot? I have several theories, such as issues with resolution, FPS, the new AV1 encoding, or the renpy code. However, I need to know which videos are causing the problem so I can pinpoint and fix them. Videos play smoothly for me since I have a powerful system. I'd also like to know if you were skipping scenes when the stutter occurs, because Renpy preloads the scene when you play at a normal pace. If you don't allow time for preloading, like when skipping or clicking too fast, it will stutter.
I don't know if you've looked into this already, but if there are issues with preloading, I recently found this snippet of code that could perhaps alleviate some of that:(…) I'd also like to know if you were skipping scenes when the stutter occurs, because Renpy preloads the scene when you play at a normal pace. If you don't allow time for preloading, like when skipping or clicking too fast, it will stutter.
options.rpy:
[…]
define config.image_cache_size_mb = 2000
[…]
script.rpy:
$ renpy.start_predict("episode1_clip1")
$ renpy.start_predict("episode1_clip2")
$ renpy.start_predict("episode1_clip3")
[…]
show episode1_clip1
[…]
show episode1_clip2
[…]
show episode1_clip3
[…]
$ renpy.stop_predict("episode1_clip1")
$ renpy.stop_predict("episode1_clip2")
$ renpy.stop_predict("episode1_clip3")
[…]
I'm sorry to say, but everything stutters for me. Even the menu screen. The character breathes, then she moves left (or right) and stutters). Same with almost every other scene in the game. I get like 1-2 seconds of no stutter followed by stutters and then again the cycle repeats. (from the eye test, it kind of looks like 5 FPS when it stutters).
As for the skipping, even when I don't skip I get the stutters. But the game breaking one was when, the MC drives the lady back home. And you're doing the freaky in the car. Sometimes the scene will just straight up freeze (and crash) the game even when I don't skip. I have actually more luck trying to skip that scene, because it actually reduces my risk of the screen freezing.
edit: To be more specific. It's the hand on chest. That's where the freeze occurs.
Can you tell me which videos you are referring to, or at least post a screenshot? I have several theories, such as issues with resolution, FPS, the new AV1 encoding, or the renpy code. However, I need to know which videos are causing the problem so I can pinpoint and fix them. Videos play smoothly for me since I have a powerful system. I'd also like to know if you were skipping scenes when the stutter occurs, because Renpy preloads the scene when you play at a normal pace. If you don't allow time for preloading, like when skipping or clicking too fast, it will stutter.
This code will make Ren'Py permanently allocate 2GB of RAM for Affexon. People complained that the game used too much RAM before I added this code with a 1GB variant.I don't know if you've looked into this already, but if there are issues with preloading, I recently found this snippet of code that could perhaps alleviate some of that:
Code:options.rpy: […] define config.image_cache_size_mb = 2000 […] script.rpy: $ renpy.start_predict("episode1_clip1") $ renpy.start_predict("episode1_clip2") $ renpy.start_predict("episode1_clip3") […] show episode1_clip1 […] show episode1_clip2 […] show episode1_clip3 […] $ renpy.stop_predict("episode1_clip1") $ renpy.stop_predict("episode1_clip2") $ renpy.stop_predict("episode1_clip3") […]
You can toggle them in v0.3. Also, they won't trigger when you are skipping.Get rid of those text animations that pop up, they just make the game very laggy and pointless