An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

## Play it now:

[![image](https://github.com/jasonswearingen/footsmash/assets/814134/ef922c54-651c-4b84-917a-69effd2bc656)](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 ![Build status badge](https://github.com/jasonswearingen/footsmash/workflows/MakeCode/badge.svg)

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.