Eruvanos by eruvanos · Pull Request #2460 · pythonarcade/arcade · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions arcade/camera/camera_2d.py
2 changes: 1 addition & 1 deletion arcade/future/splash.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class ArcadeSplash(View):
dark_mode: If True, the splash screen will be shown in dark mode. (Default False)
"""

def __init__(self, view: View, duration: int = 3, dark_mode: bool = False):
def __init__(self, view: View, duration: float = 1.5, dark_mode: bool = False):
super().__init__()
self._next_view = view
self._duration = duration
Expand Down
11 changes: 8 additions & 3 deletions arcade/gui/ui_manager.py