https://github.com/jasonswearingen/footsmash
makecode arcade, clone of DiveKick
https://github.com/jasonswearingen/footsmash
Last synced: 7 months ago
JSON representation
makecode arcade, clone of DiveKick
- Host: GitHub
- URL: https://github.com/jasonswearingen/footsmash
- Owner: jasonswearingen
- Created: 2023-01-11T03:04:27.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-12T21:26:36.000Z (almost 2 years ago)
- Last Synced: 2025-01-23T14:23:10.237Z (9 months ago)
- Language: TypeScript
- Homepage: https://jasonswearingen.github.io/footsmash/
- Size: 3.33 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Play it now:
[](https://jasonswearingen.github.io/footsmash/)
> Open this page at [https://jasonswearingen.github.io/footsmash/](https://jasonswearingen.github.io/footsmash/)
## Use as Extension
This repository can be added as an **extension** in MakeCode.
* open [https://arcade.makecode.com/](https://arcade.makecode.com/)
* click on **New Project**
* click on **Extensions** under the gearwheel menu
* search for **https://github.com/jasonswearingen/footsmash** and import## Edit this project 
To edit this repository in MakeCode.
* open [https://arcade.makecode.com/](https://arcade.makecode.com/)
* click on **Import** then click on **Import URL**
* paste **https://github.com/jasonswearingen/footsmash** and click import#### Metadata (used for search, rendering)
* for PXT/arcade
makeCodeRender("{{ site.makecode.home_url }}", "{{ site.github.owner_name }}/{{ site.github.repository_name }}");# running in VSCode
- from: https://forum.makecode.com/t/how-to-attach-makecode-typescript-to-virtual-studio/16670/2
here are the steps you can use:
- Install https://nodejs.org/en/
- Open the terminal of your choice
- Install the makecode CLI:
- npm install makecode -g
- Navigate to the folder where you want to create your project:
- cd path/to/directory/
- Create your project:
- makecode init arcade
- Install your dependencies:
- makecode install
- Open VSCode:
- code .
- Start the makecode simulator:
- makecode serve
- In a browser, open up the url that is printed in the console (http://127.0.0.1:7001 2)
- Now you can code your project in vscode and every time you save a file, the game in the browser will automatically refresh.