123
-=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- (c) WidthPadding Industries 1987 0|701|0 -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=-
Socoder -> In-Development -> Mine, Slime and Monsters - May 2023

Fri, 26 May 2023, 02:47
Pakz

Mine, Slime and Monsters - may 2023




Closing in to 8000 lines of code and almost 300 kilobytes of source code.

I added various effects this week. Flashing screen, Particle Pickup Effect, Power Lines.

Flashing screen :
The flashing screen I added after watching a docu about the Terminator movie. Here they mentioned that before a explosion they would add a short white screen. :effect

Particle Pickup:
The particle pickup effect is a effect around the player when a item is picked up. A whole swarm of particles can be flying around the player if a lot is picked up.

Power Lines: (L key on keyboard - left trigger on controller(xbox))
I am currently testing the new Power Lines. This was added after watching a bit of Turrican 2 gameplay footage. These are vertical lines that start from the position of the player and go up and down to a certain distance and then spread out from the player to the edges. If it touches a enemy they get removed and if hit a tile the power line chunk is removed.

Further work was done with adding a new collision function that can be expanded upon. I might need to do a lot of editing of all the code to make it more effecient and more clean.



( Browser -> Phone / Tablet / desktop-laptop-device - Current development version ) :

cromdesi.home.xs4all.nl/html5/MineSlimeMonsters/
Fri, 26 May 2023, 03:19
Jayenkai
RE : Flashing. Just be sure it can't be triggered too often, and try to do it over about 5 or 6 frames, as opposed to an instant flash, preferably fading out, so that it has less chance of triggering any Epileptic issues.

-=-=-
''Load, Next List!''
Fri, 26 May 2023, 03:22
Jayenkai
The little swirly particles upon pickup are nice, btw. I like that effect.

-=-=-
''Load, Next List!''
Fri, 26 May 2023, 04:11
Pakz
It is a pretty simple to make effect. I learned it from the coding train on youtube, It initially reminded me of some effects of the game Skyrim.

Currently trying to fix up bugs which show up in the browser when loaded from the site and not present with loading from local. I hate that! The problem looked like it was caused by a single ctx.drawText which slowed down the fps to a slideshow.
Fri, 26 May 2023, 04:30
Jayenkai
The effect is "almost" like Particle 8 in JSE, except Particle 8 swirls around its spawn point, not the player's position. I'm not sure how best I could get JSE to do that, unless I add some sort of SwirlPoint command or something!? *shrugs*

> Reveal 🔎

-=-=-
''Load, Next List!''
Fri, 26 May 2023, 06:20
Pakz
I am using multiple points here that the particles use for gravity.

edit:

this was the monkeyX version :