-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit from MakeCode Arcade.
- Loading branch information
1 parent
e361ef3
commit 6c4f299
Showing
2 changed files
with
10 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
}); | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,19 @@ | ||
{ | ||
"name": "playing_card_skillmap_assets", | ||
"version": "0.0.0", | ||
"dependencies": { | ||
"device": "*" | ||
}, | ||
"files": [ | ||
"main.ts" | ||
], | ||
"testDependencies": {}, | ||
"targetVersions": { | ||
"target": "1.12.53", | ||
"targetId": "arcade" | ||
}, | ||
"supportedTargets": [ | ||
"arcade" | ||
], | ||
"dependencies": { | ||
"device": "*" | ||
}, | ||
"testDependencies": {} | ||
} | ||
"preferredEditor": "tsprj" | ||
} |