added disclosure
This commit is contained in:
parent
090e6cb379
commit
a6aa18171b
2 changed files with 4 additions and 12 deletions
14
README.md
14
README.md
|
@ -3,7 +3,7 @@ Hextris
|
||||||
|
|
||||||
<img src="images/twitter-opengraph.png" width="100px"><br>
|
<img src="images/twitter-opengraph.png" width="100px"><br>
|
||||||
|
|
||||||
An addictive puzzle game inspired by Tetris.
|
An addictive puzzle game inspired by Tetris. Play it at [hextris.io](http://hextris.io).
|
||||||
|
|
||||||
By:
|
By:
|
||||||
- Logan Engstrom ([@lengstrom](http://loganengstrom.com/))
|
- Logan Engstrom ([@lengstrom](http://loganengstrom.com/))
|
||||||
|
@ -14,21 +14,13 @@ By:
|
||||||
# Contributions
|
# Contributions
|
||||||
Please submit pull requests to the branch `clay-improvements`.
|
Please submit pull requests to the branch `clay-improvements`.
|
||||||
|
|
||||||
# Releases
|
|
||||||
#### iOS: https://itunes.apple.com/us/app/hextris/id903769553?mt=8
|
|
||||||
![](http://i.imgur.com/KBYZcf5.png)
|
|
||||||
|
|
||||||
#### Android: https://play.google.com/store/apps/details?id=com.hextris.hextris
|
|
||||||
![](http://i.imgur.com/mxj8yKs.png)
|
|
||||||
|
|
||||||
#### Firefox OS: https://marketplace.firefox.com/app/hextris-app
|
|
||||||
![](http://i.imgur.com/RhECXPg.png)
|
|
||||||
|
|
||||||
# About
|
# About
|
||||||
Hextris was created by a couple high school friends (who are now in college!) who unfortunately don't have as much time to update the game. If you'd like to support the open-source development of Hextris, please consider donating at:
|
Hextris was created by a couple high school friends (who are now in college!) who unfortunately don't have as much time to update the game. If you'd like to support the open-source development of Hextris, please consider donating at:
|
||||||
|
|
||||||
ETH: `0xbf5414129552D37B4Fb12D058Cf1596B960d25b2`
|
ETH: `0xbf5414129552D37B4Fb12D058Cf1596B960d25b2`
|
||||||
|
|
||||||
|
Disclosure: Please note that the version on hextris.io uses [Monero](http://coinhive.com) to support the developers. If you'd rather not play that version, an unmonetized version is available to play at: https://hextris.github.io/hextris.
|
||||||
|
|
||||||
## Press kit
|
## Press kit
|
||||||
|
|
||||||
http://hextris.github.io/presskit/info.html
|
http://hextris.github.io/presskit/info.html
|
||||||
|
|
|
@ -41,7 +41,7 @@ function drawScoreboard() {
|
||||||
var h = trueCanvas.height / 2 + gdy + 100 * settings.scale;
|
var h = trueCanvas.height / 2 + gdy + 100 * settings.scale;
|
||||||
if (gameState === 0) {
|
if (gameState === 0) {
|
||||||
renderText(trueCanvas.width / 2 + gdx + 6 * settings.scale, trueCanvas.height / 2 + gdy, 60, "rgb(236, 240, 241)", String.fromCharCode("0xf04b"), 'px FontAwesome');
|
renderText(trueCanvas.width / 2 + gdx + 6 * settings.scale, trueCanvas.height / 2 + gdy, 60, "rgb(236, 240, 241)", String.fromCharCode("0xf04b"), 'px FontAwesome');
|
||||||
renderText(trueCanvas.width / 2 + gdx + 6 * settings.scale, trueCanvas.height / 2.15 + gdy - 155 * settings.scale, 150, "#2c3e50", "Hextris");
|
renderText(trueCanvas.width / 2 + gdx + 6 * settings.scale, trueCanvas.height / 2.1 + gdy - 155 * settings.scale, 150, "#2c3e50", "Hextris");
|
||||||
renderText(trueCanvas.width / 2 + gdx + 5 * settings.scale, h + 10, fontSize, "rgb(44,62,80)", 'Play!');
|
renderText(trueCanvas.width / 2 + gdx + 5 * settings.scale, h + 10, fontSize, "rgb(44,62,80)", 'Play!');
|
||||||
} else if (gameState != 0 && textOpacity > 0) {
|
} else if (gameState != 0 && textOpacity > 0) {
|
||||||
textOpacity -= 0.05;
|
textOpacity -= 0.05;
|
||||||
|
|
Loading…
Reference in a new issue