After several days of coding, the level editor is finally ready (aside from the fact thereâs no way to insert / remove columns in the middle of the canvas). Now I just need to wait until my iPad is online again to share it.
I have noticed some flashing text in the block drawer in version 3.54.2, and sometimes double tapping doesnât show the [paste | help] options as expected.
@Spy_Guy_96 I finally found a way to prevent extra enemies from sometimes appearing in the corner after the player respawns.
Under player, when I get a message: reset, set Disable Spawning to 1, then after the repeat 2, wait 0âs, set it back to 0 (if you do this too early, youâll have the same issue youâve been having. Do it too late, and the other enemies will look weird (not normal).
Then, in the tiles where it sets the enemiesâ parameters, add a check to see if Disable Spawning is 0 before spawning them.
I have definitely worked on my organization!
Heyy guys
What yall coding?
Yeah I asked about the web because the web reloads drafts instantly whereas the phone version requires you to quit and relaunch the app to refresh the drafts. But you said it didnât show there either
Oh wait I just checked again and since I made a ton of empty drafts today it got kinda dug up in there but itâs actually there. (The previous save that I though got deleted too) So it was actually just one save that got erased. So sorry if that messed things up!
anyone have any tips for getting a big project done fast and not procrastinating
Making better physics!
Good luck, RoadOcean.
My editor will have some quick actions (modded player only)
CTRL + click = pick-tile
ALT + click = erase tile
Arrow Keys = scroll level
Shift + Arrow Keys = fast scroll
[ and ] = previous / next tile
I just realised I changed my username on hopscotch but it still shows as my old username on my profile, does anyone now how I can update it?
So I have been stuck on a problem that I canât find a good solution for. I do have a solution but itâs not very goodâŚ
So basically, in hopscotch, when you have a number with 0âs in front, hopscotch automatically deletes those 0âs.
So 0056 becomes 56.
But the thing is, is that in a project Iâm working on, I have a variable, and this variable is supposed to store a number. And this number often has 0âs in front.
This usually isnât an issue as hopscotch automatically removes 0âs in front of a number (which is what I want), but this doesnât happen with negative numbers.
So 00-56 doesnât become -56, as hopscotch treats 00-56 as a string, not a number. And I was wondering if someone had a way to convert this string to a number.
(Characters in (00-56) between 2 and 5) * 1 ???
The fact it doesnât remove the zeros from 00-56 automatically makes sense as the negative sign is also known in string as a hyphen. The only ways to get rid of the zeros here is to do it manually.
Go to: preferences (click your pfp at the top of your screen), then go to profile, then scroll down until you find the Hopscotch username section. Itâs also where you would go to change your bio.
That doesnât work as in my case the negative character can be in different positions in the string, and the string can be different sizes.
Then thereâs no way to do it. Unless you want to do frame recursion to search for the negative sign in the potentially huge string (which can cause crashes if the string is very very large).
It would be very limited, and after a certain point itâs no longer possible to do it in one frame.
thanks