Skip to content
This repository has been archived by the owner on Sep 29, 2020. It is now read-only.

Commit

Permalink
1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rasmusmerzin committed Aug 14, 2019
1 parent c9933f3 commit fa7fe8f
Show file tree
Hide file tree
Showing 15 changed files with 535 additions and 92 deletions.
File renamed without changes
Binary file added images/booster.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed images/bull.png
Binary file not shown.
Binary file removed images/bull.xcf
Binary file not shown.
Binary file added images/char-green.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/char-pink.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file added images/char-yellow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed images/gravel.png
Binary file not shown.
Binary file added images/platform.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed images/rock.png
Binary file not shown.
Binary file removed images/slate.png
Binary file not shown.
9 changes: 7 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,22 @@
<title>PLATFORMER</title>
<style>
body {
background-image: url("images/vines.png");
background-image: url("images/background.png");
}
#root {
position: fixed;
left: 50%;
top: 50%;
}
#world {
position: absolute;
}
</style>
</head>
<body>
<div id="root"></div>
<div id="root">
<div id="world"></div>
</div>
<script src="script.js"></script>
</body>
</html>
263 changes: 263 additions & 0 deletions js-platformer.sublime-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,263 @@
{
"auto_complete":
{
"selected_items":
[
[
"piece",
"pieceOrig"
],
[
"ge",
"genPosition"
],
[
"up",
"updateWorldPosition"
],
[
"max",
"maxX"
],
[
"get",
"getPosition"
],
[
"char",
"characters"
],
[
"cha",
"characters"
],
[
"create",
"createMap"
],
[
"dis",
"disableLeftCollision"
],
[
"disa",
"disableTopCollision"
]
]
},
"buffers":
[
{
"file": "script.js",
"settings":
{
"buffer_size": 11539,
"encoding": "UTF-8",
"line_ending": "Unix"
}
}
],
"build_system": "",
"build_system_choices":
[
],
"build_varint": "",
"command_palette":
{
"height": 0.0,
"last_filter": "",
"selected_items":
[
[
"remove",
"Package Control: Remove Package"
],
[
"install\t",
"Package Control: Install Package"
]
],
"width": 0.0
},
"console":
{
"height": 0.0,
"history":
[
]
},
"distraction_free":
{
"menu_visible": true,
"show_minimap": false,
"show_open_files": false,
"show_tabs": false,
"side_bar_visible": false,
"status_bar_visible": false
},
"expanded_folders":
[
"/home/keep/Projects/js-platformer",
"/home/keep/Projects/js-platformer/images"
],
"file_history":
[
"/home/keep/Projects/js-platformer/index.html"
],
"find":
{
"height": 40.0
},
"find_in_files":
{
"height": 0.0,
"where_history":
[
]
},
"find_state":
{
"case_sensitive": false,
"find_history":
[
"world",
"\"root\"",
"var i =",
"images/block.png"
],
"highlight": true,
"in_selection": false,
"preserve_case": false,
"regex": false,
"replace_history":
[
"\"world\"",
"block"
],
"reverse": false,
"show_context": true,
"use_buffer2": true,
"whole_word": false,
"wrap": true
},
"groups":
[
{
"selected": 0,
"sheets":
[
{
"buffer": 0,
"file": "script.js",
"semi_transient": false,
"settings":
{
"buffer_size": 11539,
"regions":
{
},
"selection":
[
[
10182,
10182
]
],
"settings":
{
"syntax": "Packages/JavaScript/JavaScript.sublime-syntax",
"translate_tabs_to_spaces": false
},
"translation.x": 0.0,
"translation.y": 536.0,
"zoom_level": 1.0
},
"stack_index": 0,
"type": "text"
}
]
}
],
"incremental_find":
{
"height": 22.0
},
"input":
{
"height": 35.0
},
"layout":
{
"cells":
[
[
0,
0,
1,
1
]
],
"cols":
[
0.0,
1.0
],
"rows":
[
0.0,
1.0
]
},
"menu_visible": true,
"output.find_results":
{
"height": 0.0
},
"pinned_build_system": "",
"project": "js-platformer.sublime-project",
"replace":
{
"height": 71.0
},
"save_all_on_build": true,
"select_file":
{
"height": 0.0,
"last_filter": "",
"selected_items":
[
],
"width": 0.0
},
"select_project":
{
"height": 500.0,
"last_filter": "",
"selected_items":
[
],
"width": 380.0
},
"select_symbol":
{
"height": 0.0,
"last_filter": "",
"selected_items":
[
],
"width": 0.0
},
"selected_group": 0,
"settings":
{
},
"show_minimap": true,
"show_open_files": false,
"show_tabs": true,
"side_bar_visible": true,
"side_bar_width": 218.0,
"status_bar_visible": true,
"template_settings":
{
}
}
Loading

0 comments on commit fa7fe8f

Please sign in to comment.