Skip to content

Commit

Permalink
Updates from MakeCode Arcade editor after reset.
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-kulcsar committed Jun 22, 2024
1 parent a88e5b7 commit e01244f
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 30 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
> Open this page at [https://robo-technical-group.github.io/acey-deucey/](https://robo-technical-group.github.io/acey-deucey/)
## Use this 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/robo-technical-group/acey-deucey** and import

## Edit this extension ![Build status badge](https://github.com/robo-technical-group/acey-deucey/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/robo-technical-group/acey-deucey** and click import

## Blocks preview

This image shows the blocks code from the last commit in master.
This image may take a few minutes to refresh.

![A rendered view of the blocks](https://github.com/robo-technical-group/acey-deucey/raw/master/.github/makecode/blocks.png)

#### Metadata (used for search, rendering)

* for PXT/arcade
<script src="https://makecode.com/gh-pages-embed.js"></script><script>makeCodeRender("{{ site.makecode.home_url }}", "{{ site.github.owner_name }}/{{ site.github.repository_name }}");</script>
24 changes: 0 additions & 24 deletions main.ts
Original file line number Diff line number Diff line change
@@ -1,24 +0,0 @@
/**
* This is the main file for your project.
*
* Create images, tilemaps, animations, and songs using the
* asset explorer in VS Code. You can reference those assets
* using the tagged templates on the assets namespace:
*
* assets.image`myImageName`
* assets.tilemap`myTilemapName`
* assets.tile`myTileName`
* assets.animation`myAnimationName`
* assets.song`mySongName`
*
* New to MakeCode Arcade? Try creating a new project using one
* of the templates to learn about Sprites, Tilemaps, Animations,
* and more! Or check out the reference docs here:
*
* https://arcade.makecode.com/reference
*/

game.onUpdate(() => {
// Code in this function will run once per frame. MakeCode
// Arcade games run at 30 FPS
});
18 changes: 12 additions & 6 deletions pxt.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
{
"name": "acey-deucey",
"version": "1.1.1",
"dependencies": {
"device": "*"
},
"files": [
"main.ts"
"main.ts",
"README.md"
],
"testDependencies": {},
"targetVersions": {
"target": "1.12.53",
"targetId": "arcade"
},
"supportedTargets": [
"arcade"
],
"dependencies": {
"device": "*"
},
"testDependencies": {}
}
"preferredEditor": "tsprj"
}

0 comments on commit e01244f

Please sign in to comment.