Initial Android commit

This commit is contained in:
OleSTEEP 2024-11-10 03:34:28 +03:00
commit 1e2b80c13d
8521 changed files with 231475 additions and 0 deletions

41
scripts/Config.gd Normal file
View file

@ -0,0 +1,41 @@
extends Node
const WindowStateEnum = {
Windowed = 0,
Borderless = 1,
Fullscreen = 2,
}
var Language = "";
var VoiceLanguage = "en";
var WindowState = WindowStateEnum.Fullscreen;
var ScreenResolution = "-";
var LowProcessor = false;
var GeneralVolume = 40;
var MusicVolume = 50;
var DialogueVolume = 60;
var EffectsVolume = 30;
var AutoRead:bool = false;
var SkipSeen:bool = false;
var TextSpeed:int = 5;
var DefaultTheme:bool = true
var TextColor:int = Color.white.to_rgba32();
var BackgroundColor:int = Color.black.to_rgba32();
var TwitchEnabled:bool = false;
var TwitchChannel:String = "";
var TwitchTimer:int = 60;
var Explanation:bool = true;
var AsyncBackgroundLoading:bool = true;
var UseDlc:bool = true;
var Version:String = "1.3";