pxt-arcade 1.12.3 → 1.12.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/built/common-sim.d.ts +2 -2
- package/built/target-strings.json +1 -0
- package/built/target.js +1733 -146
- package/built/target.json +1733 -146
- package/built/targetlight.json +5 -5
- package/docs/hardware/adding.md +46 -52
- package/docs/hero-banner.md +5 -5
- package/docs/hour-of-code-2022-es.html +0 -1
- package/docs/hour-of-code-2022.html +0 -4
- package/docs/kiosk.html +1 -1
- package/docs/static/hero-gallery/holiday.png +0 -0
- package/docs/static/kiosk/asset-manifest.json +6 -6
- package/docs/static/kiosk/static/css/main.b60591be.css +2 -0
- package/docs/static/kiosk/static/css/main.b60591be.css.map +1 -0
- package/docs/static/kiosk/static/js/{main.f11fd683.js → main.7c9f0b91.js} +3 -3
- package/docs/static/kiosk/static/js/{main.f11fd683.js.LICENSE.txt → main.7c9f0b91.js.LICENSE.txt} +0 -0
- package/docs/static/kiosk/static/js/main.7c9f0b91.js.map +1 -0
- package/docs/static/libs/multiplayer.png +0 -0
- package/docs/static/tutorials/aliens/reload.png +0 -0
- package/docs/static/tutorials/arrows/key.png +0 -0
- package/docs/static/tutorials/holiday/bgd.png +0 -0
- package/docs/static/tutorials/holiday/p1.png +0 -0
- package/docs/static/tutorials/holiday/p2.png +0 -0
- package/docs/test/courses/carnival.md +57 -0
- package/docs/test/courses/class-arcade.md +57 -0
- package/docs/test/skillmap/story/story1.md +8 -21
- package/docs/test/skillmap/story/story2.md +17 -28
- package/docs/test/skillmap/story/story3.md +51 -469
- package/docs/test/skillmap/story/story4.md +1 -2
- package/docs/test/tutorials/arrow.md +4 -4
- package/docs/test/tutorials/holiday.md +609 -0
- package/docs/test/tutorials/hundred.md +140 -157
- package/docs/test/tutorials/wakanda-forever.md +41 -1
- package/docs/tutorials/holiday.md +609 -0
- package/docs/tutorials/wakanda-forever.md +203 -146
- package/package.json +3 -3
- package/pxtarget.json +1 -0
- package/docs/static/kiosk/static/css/main.8897f977.css +0 -2
- package/docs/static/kiosk/static/css/main.8897f977.css.map +0 -1
- package/docs/static/kiosk/static/js/main.f11fd683.js.map +0 -1
package/built/common-sim.d.ts
CHANGED
|
@@ -1173,8 +1173,8 @@ declare namespace pxsim.visuals {
|
|
|
1173
1173
|
}
|
|
1174
1174
|
}
|
|
1175
1175
|
declare namespace pxsim.settings {
|
|
1176
|
-
function _set(key: string, buf: RefBuffer):
|
|
1177
|
-
function _remove(key: string):
|
|
1176
|
+
function _set(key: string, buf: RefBuffer): 0 | -1;
|
|
1177
|
+
function _remove(key: string): 0 | -1;
|
|
1178
1178
|
function _exists(key: string): boolean;
|
|
1179
1179
|
function _get(key: string): RefBuffer;
|
|
1180
1180
|
function _userClean(): void;
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
"A sprite with path projection": "A sprite with path projection",
|
|
7
7
|
"A thermometer driver": "A thermometer driver",
|
|
8
8
|
"Adafruit Feather pinout": "Adafruit Feather pinout",
|
|
9
|
+
"Additional blocks for building multiplayer games": "Additional blocks for building multiplayer games",
|
|
9
10
|
"Additional scaling blocks for sprites": "Additional scaling blocks for sprites",
|
|
10
11
|
"Adds new blocks for message communication in the radio category": "Adds new blocks for message communication in the radio category",
|
|
11
12
|
"Advanced Livestream": "Advanced Livestream",
|