forked from Felk/dolphin
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdolphin_utils.pyi
More file actions
58 lines (34 loc) · 1016 Bytes
/
dolphin_utils.pyi
File metadata and controls
58 lines (34 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
"""Module for various utilities."""
def get_script_dir() -> str:
"""
Returns the path to the Scripts directory, \
which is found in the Load folder inside of the user directory by default.
:return: value as string
"""
def open_dir() -> str:
"""
Prompts the user to open a file.
:return: value as string
"""
def start_framedump() -> None:
"""Starts a framedump."""
def stop_framedump() -> None:
"""Stops a framedump."""
def is_framedumping() -> bool:
"""
Checks if a framedump is occuring.
:return: value as bool
"""
def start_audiodump() -> None:
"""Starts an audiodump."""
def stop_audiodump() -> None:
"""Stops an audiodump."""
def is_audiodumping() -> bool:
"""
Checks if an audiodump is occuring.
:return: value as bool
"""
def save_screenshot(filename: str | None = None) -> None:
"""Saves a screenshot of the running game."""
def toggle_play() -> None:
"""Plays/Pauses the current game."""