You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Settings (both Editor and User-defined) are stored in standard UObject classes. The "mutable default object" if those classes is what stores the specific settings.
5
+
6
+
To access the "mutable default object" of a class you can use the ```unreal_engine.get_mutable_default(class)``` function.
7
+
8
+
The following example code shows how to change the Editor/Appearance settings:
9
+
10
+
```python
11
+
import unreal_engine as ue
12
+
from unreal_engine.classes import EditorProjectAppearanceSettings
0 commit comments