aintnothingbutapeanut/data/twn.toml

29 lines
837 B
TOML
Raw Normal View History

2025-01-26 20:16:13 +00:00
# This file contains everything about the engine and your game that can be
# configured before it runs.
#
# Optional settings are commented out, with their default values shown.
# Invalid values in these settings will be ignored.
# Data about your game as an application
[about]
title = "aintnothingbutapeanut"
developer = "veclavtalica"
app_id = "anbap"
dev_id = "veclavtalica"
# Game runtime details
[game]
resolution = [ 960, 540 ]
#debug = true
2025-01-27 01:48:00 +00:00
background_color = [ 125, 0, 0, 255 ]
2025-01-26 20:16:13 +00:00
# Engine tweaks. You probably don't need to change these
[engine]
ticks_per_second = 60 # minimum of 8
2025-01-27 01:15:28 +00:00
cull_faces = false
2025-01-26 20:16:13 +00:00
#keybind_slots = 3 # minimum of 1
#texture_atlas_size = 2048 # minimum of 32
#font_texture_size = 2048 # minimum of 1024
#font_oversampling = 4 # minimum of 0
#font_filtering = "linear" # possible values: "nearest", "linear"