Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix-ajustesmusica #1

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
13 changes: 13 additions & 0 deletions .dependencygraph/setting.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"entryFilePath": "dictionary.js",
"alias": false,
"resolveExtensions": [
".js",
".jsx",
".ts",
".tsx",
".vue",
".scss",
".less"
]
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ $RECYCLE.BIN/
# Thumbnails
._*

# node_modules File
*node_modules/*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
Expand Down
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<a href="https://thquinn.itch.io/stereotype">
<div>
<img src ="https://i.imgur.com/P6e1wLQ.png" />
<p align="center">A rhythm/typing game made in 48 hours for Ludum Dare 41</p>
</div>
</a>
<div align="center">
<img src ="https://imgur.com/dymzFvV.png"/>
<p>Projeto de manutenção de software UTFPR-DV</p>
<a href="https://github.com/thquinn/STEREOtype">
<p>Projeto original</p>
</a>
</div>
5 changes: 4 additions & 1 deletion dictionary.js

Large diffs are not rendered by default.

28 changes: 15 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
<html style="background: #303030;">
<head>
<link href="https://fonts.googleapis.com/css?family=Cambo" rel="stylesheet">
<style> body { overflow:hidden; } #gameCanvas { position: fixed; width: 1600px; height: 900px; top: 50%; left: 50%; transform: translate(-50%, -50%); } </style>
</head>
<body>
<canvas id='gameCanvas'></canvas>
asdasdasd
</body>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/tone/13.0.1/Tone.min.js"></script>
<script type="text/javascript" src="dictionary.js"></script>
<script type="text/javascript" src="util.js"></script>
<script type="text/javascript" src="stereotype.js"></script>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>Projeto de Manutenção de software - Davidson e Karolaine - Utfpr-dv</title>
<link href="https://fonts.googleapis.com/css?family=Cambo" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<button id="restart-button" style="display: none">Restart</button>
<canvas id='gameCanvas'></canvas>
</body>
<script src="https://unpkg.com/[email protected]/build/Tone.js"></script>
<script type="text/javascript" src="dictionary.js"></script>
<script type="text/javascript" src="util.js"></script>
<script type="text/javascript" src="stereotype.js"></script>
</html>
55 changes: 55 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "stereotype",
"version": "1.0.0",
"description": "<a href=\"https://thquinn.itch.io/stereotype\">\r <div>\r <img src =\"https://i.imgur.com/P6e1wLQ.png\" />\r <p align=\"center\">A rhythm/typing game made in 48 hours for Ludum Dare 41</p>\r </div>\r </a>",
"main": "dictionary.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bkarln/STEREOtype.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/thquinn/STEREOtype/issues"
},
"homepage": "https://github.com/bkarln/STEREOtype#readme"
}
Loading