123
-=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- (c) WidthPadding Industries 1987 0|455|0 -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=-
Socoder -> JSE -> Gotojse sharing on forum

Sat, 14 May 2022, 10:10
Pakz

Gotojse sharing on forum


Ok. I have made something and would want to share it here on the forum.

I am using a iphone. I pressed the globe button and the site asks if I would like to share it. I get taken to a page where there is a line of text asking me what to share. I can select nothing.

The download or export project also seems to compres a project but gives me nothing. There is nothing in the files app download folder either.

How do I post my code here?

Edit: my phone keyboard does not have a tab key I think I can space it. But while working on things. This can get involved.
Sat, 14 May 2022, 11:55
Jayenkai
As far as the globe goes, click the screen and it copies that shortcut code, which is a link to your uploaded version.
But you don't need to do that.

JSE is forum friendly.
Just copy & paste your source code between [jse] tags.

-=-=-
''Load, Next List!''
Sat, 14 May 2022, 12:16
Pakz
Ah, ok. I could not find it in the bbcode help.

Wil post something when I added/fixed the latest features.
Sat, 14 May 2022, 13:09
Pakz
Ok messy, buggy, unpolished game.

Pea, meat and potato

Spear pea’s, grab meat. 5 meat turns into 1 potato.

Ps - enable touch screen controls.

  --v

Edit : I also tried to use gotojse outside with no internet connection. This seems to work without problems. I think I need to be sure every page had been loaded before. Editing code and gfx and compiling works.
Sat, 14 May 2022, 14:59
Jayenkai
What a bizarre game!!
Sun, 15 May 2022, 07:00
Jayenkai
Possible Tweaks..

Input
You've specified Port 5 for the input. This means your game only plays when someone's playing with the onscreen controls. Most people probably won't even activate those.

Instead, leave out the port number (or use port -1) and the game will run on all devices, whether the user is using those onscreen controls, or keyboard, or gamepad..

Pickup Failure
The game currently picks up "nothings" from off the edge of the screen.

-=-=-
''Load, Next List!''
Sun, 15 May 2022, 07:12
Pakz
The sprites on the left side of the screen are the score? There is a bug where the harpoon retracts and grabs things. Also sometimes a sprite does not get disabled once picked up.

I was trying to do a screen fade just yet. I did not want to use a bresenham circle. i did a distance check between the pixels in a cos sin circle. It is a bit slow. I think it is to slow to put into the snippets on the site here.

  --v

Sun, 15 May 2022, 07:24
Jayenkai
Tip 1.. There's a DrawCircle/DrawOval instead of 360 lines.
Tip 2.. There's a SetThick to make the line thicker.

All you have to do is "draw" (not fill) a circle, and slowly reduce the width of its line.

  --v


Why not try mixing in some SetBlend, too!

  --v


-=-=-
''Load, Next List!''
Sun, 15 May 2022, 07:29
Pakz
Ok, that is a much easier way! You should write a book