Remove leftovers of old splash screen #8
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR removes all remaining artifacts from an old splash screen implementation that was no longer being used in the main game flow.
Changes Made
ui/splash.gd
- Old splash screen script that was misleadingly namedui/splash.gd.uid
- Associated UID file for the old splash scriptui/credits.gd
- New properly named script for credits functionalityui/credits.tscn
- Now references the correctcredits.gd
script instead of the old splash scriptexit_splash()
toexit_credits()
for semantic clarityContext
The repository had leftover files from an old splash screen implementation. The
splash.gd
script was actually being used by the credits screen (credits.tscn
) but retained the old splash-related naming, which was confusing and misleading.The main game flow already bypassed any splash screen (project starts directly with
main.tscn
), so these were truly just leftovers that needed cleanup.Verification
*splash*
remain in the repositoryFixes #1.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.