4.50 star(s) 379 Votes

DatGuy20

Member
Jul 14, 2017
280
325
219
Are the developers of "Summer Heat" doing some of their rendering in Blender?

That reminds me of others developers who migrated from Daz to Unreal and Blender, thinking they could do something better, and ended up in oblivion, Daz is a very easy-to-use tool compared to the ones I already mentioned; the learning curve is very steep, and that's just the beginning.
Yeah you can look up blender in this thread they decided to move to it like 2-3 years ago
 
  • Like
Reactions: vireker

Falconer1523

Newbie
Jul 28, 2021
16
96
72
I do wonder what the longer term dev plan is. Since release the game has progressed what? Two day in game time. Given that summer camp is supposed to last "a few weeks" we have at a minimum 12 days left. Probably more since "a few weeks" is more likely to mean 3-4 than 2. So at this rate we have at a bare minimum 6 years of dev time left before the game is "finished".

1762301087053.png
 

alukar507

Newbie
May 29, 2021
18
3
21
https://f95zone.to/threads/summer-heat-v0-6-1-naughty-fox-games.107102/post-14884341
People discussing it here, it's a common bug linked to translation mod, but if that's not your problem I don't know, check the link though, it might help.
It doesn't really work for me, because I haven't added anything to the game, but if someone could provide me with a save from a point where the sheet isn't there, that would be great. I wouldn't want to abandon the visual novel because of that detail.
 

armond

Engaged Member
Apr 26, 2020
2,413
9,702
678
I do wonder what the longer term dev plan is. Since release the game has progressed what? Two day in game time. Given that summer camp is supposed to last "a few weeks" we have at a minimum 12 days left. Probably more since "a few weeks" is more likely to mean 3-4 than 2. So at this rate we have at a bare minimum 6 years of dev time left before the game is "finished".

View attachment 5409076
Hang... We get it, Bree has an asphyxiation fetish
 

Niuul

Well-Known Member
Jun 25, 2022
1,357
3,317
387
Yeah, sent home in 3 days or something bizzare like that. Now if thats the ending it would be the bullshititest bullshit to ever bullshit past a bullshitting parlor.
My money is on it turning in to a scooby doo murder mystery. Who was in the bathroom peepin'!? What happened to the shoe in the old school?!
 

Thamn

Newbie
Aug 6, 2016
66
189
231
Could someone tell me how to remove that?
View attachment 5409443
You can hide it by typing hide screen introduction_sheet in the developer console.
You don't have permission to view the spoiler content. Log in or register now.
Just to clear up any confusion since this problem is always coming up, while this is triggered by a language change, it's the result of a poorly implemented set of conditions, the relevant code is this:
Python:
if _preferences.language == None:
    hide screen introduction_sheet with dissolve
elif _preferences.language == "swedish":
    hide screen introduction_sheet_swedish with dissolve
This means any language other than None or swedish will not hide that screen, it's bad practice to program it this way even if they don't support mods, this screen must be hidden no matter what so, at the end of whatever list of conditions the devs want to account for, it should always end with:
Python:
else:
    hide screen introduction_sheet with dissolve
Until this is fixed by the devs (it's lines 756-759 of script_ch03.rpy in case you're reading this, you technically don't even need the conditions as Ren'Py will not care if you try to hide a screen that's already hidden) our options are to either ensure that no translation is active at the time this screen is supposed to be hidden, or hide it ourselves by running the hide screen introduction_sheet command from the developer console or a mod.
 
4.50 star(s) 379 Votes