-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add player names support in network games
The GUI will now request a player name once when enabling network features. Names will be displayed for people you are hitting, people that are hitting you, people that eliminated you, and when you score a point. A team score is now displayed. When someone on your team scores a point, the team score will be updated. If a score limit is set, the game will end when one team reaches the score limit. Added a sound that plays when you score a point in network games. Fixed a few bugs (and probably created a couple of new bugs).
- Loading branch information
Showing
9 changed files
with
318 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
196 changes: 152 additions & 44 deletions
196
app/src/main/java/com/simplecoil/simplecoil/FullscreenActivity.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,6 @@ | |
<alpha | ||
android:fromAlpha="1.0" | ||
android:toAlpha="0.1" | ||
android:duration="400" | ||
android:duration="800" | ||
/> | ||
</set> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.