Update src/extension-support/extension-manager.js
Browse files
src/extension-support/extension-manager.js
CHANGED
@@ -26,6 +26,15 @@ async function sha256(source) {
|
|
26 |
// TODO: change extension spec so that library info, including extension ID, can be collected through static methods
|
27 |
|
28 |
const defaultBuiltinExtensions = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
// This is an example that isn't loaded with the other core blocks,
|
30 |
// but serves as a reference for loading core blocks as extensions.
|
31 |
coreExample: () => require('../blocks/scratch3_core_example'),
|
|
|
26 |
// TODO: change extension spec so that library info, including extension ID, can be collected through static methods
|
27 |
|
28 |
const defaultBuiltinExtensions = {
|
29 |
+
ml2scratch: () => require('../extensions/scratch3_ml2scratch'),
|
30 |
+
facemesh2scratch: () => require("../extensions/scratch3_facemesh2scratch"),
|
31 |
+
handpose2scratch: () => require("../extensions/scratch3_handpose2scratch"),
|
32 |
+
ml2scratch: () => require("../extensions/scratch3_ml2scratch"),
|
33 |
+
tm2scratch: () => require("../extensions/scratch3_tm2scratch"),
|
34 |
+
tmpose2scratch: () => require("../extensions/scratch3_tmpose2scratch"),
|
35 |
+
newhandpose2scratch: () => require("../extensions/scratch3_new_handpose2scratch"),
|
36 |
+
ic2scratch: () => require("../extensions/scratch3_ic2scratch"),
|
37 |
+
posenet2scratch: ()=> require('../extensions/scratch3_posenet2scratch'),
|
38 |
// This is an example that isn't loaded with the other core blocks,
|
39 |
// but serves as a reference for loading core blocks as extensions.
|
40 |
coreExample: () => require('../blocks/scratch3_core_example'),
|