FuncDoodle
Loading...
Searching...
No Matches
AppSettings.h
Go to the documentation of this file.
1
13
14#pragma once
15
16namespace FuncDoodle {
22 struct AppSettings {
23 bool Sfx = false;
24 bool Preview = true;
26 true;
27 float FrameLimit = 1000.0;
28 };
29} // namespace FuncDoodle
The FuncDoodle C++ namespace.
Definition Common.h:12
Represents the application's current settings and loaded from imgui.ini.
Definition AppSettings.h:22
bool UndoByStroke
Groups freehand strokes into single undo steps.
Definition AppSettings.h:25
float FrameLimit
Target frame cap used by the main loop.
Definition AppSettings.h:27
bool Preview
Enables previous-frame preview rendering.
Definition AppSettings.h:24
bool Sfx
Enables UI and project sound effects.
Definition AppSettings.h:23