For my skill map, on the final tile I want students to have access to all coding blocks with the program they have created as sort of a challenge lab/free play where they can do anything else they want to their program.
How do you enable all coding blocks since the past tiles they only had access to the ones in the ``blocks``
Hello! I’m so glad you’re exploring creating your own Skillmap - please let us know how we can improve our documentation to make it easier for others.
In tutorial mode, the Toolbox is filtered by design. If you want a curated list of blocks available, you can use the ```ghost section of a tutorial to have them show up in the Toolbox (Control options). Otherwise, after students click Done to exit the tutorial, they can click on the Save to My Projects button in the Skillmap to open up their project in the full editor.
I wanted them to experiment more in the challenge lab and then shareout in their classrooms. I built an approved HOI activity.
In my ghost section, I ended up including a bunch of code like this so it all shows up:
let __add = 0 + 0
let __sub = 0 - 0
let __mul = 1 * 1
let __div = 1 / 1
let __mod = 1 % 1
let __pow = Math.pow(2, 3)
let __min = Math.min(0, 1)
let __max = Math.max(0, 1)
let __abs = Math.abs(-1)
let __round = Math.round(1.2)
let __floor = Math.floor(1.8)
let __ceil = Math.ceil(1.1)
let __rand = randint(0, 10)
let __w = scene.screenWidth()
let __h = scene.screenHeight()