A Minecraft style clone in Godot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

9 lines
317 B

## The resource for saving game settings.
## This should be not be saved with saves (for game syncing reasons)
class_name GraphicsSettingsResource
extends Resource
@export var resolution: Vector2i = Vector2i(1280, 720)
@export var fullscreen: bool = false
@export var vsync: bool = false
@export var fov: int = 75