mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-08 18:55:07 +00:00
Release game's render texture before resizing it (#548)
This commit is contained in:
parent
c0312fc6d4
commit
9d2c34ff47
1 changed files with 9 additions and 0 deletions
|
@ -327,11 +327,20 @@ namespace HeavenStudio
|
|||
height = (int)(width / 16f * 9f);
|
||||
}
|
||||
|
||||
GameRenderTexture.Release();
|
||||
|
||||
GameRenderTexture.width = width;
|
||||
GameRenderTexture.height = height;
|
||||
|
||||
GameRenderTexture.Create();
|
||||
|
||||
|
||||
OverlayRenderTexture.Release();
|
||||
|
||||
OverlayRenderTexture.width = (int)(width * 1.5f);
|
||||
OverlayRenderTexture.height = (int)(height * 1.5f);
|
||||
|
||||
OverlayRenderTexture.Create();
|
||||
}
|
||||
|
||||
public static void ChangeMasterVolume(float value)
|
||||
|
|
Loading…
Reference in a new issue