Maze and 3D Flag

Hello everyone

I created a new topic because my messages were hidden, saying that it was spam.

I thought I was on the right site, where we discuss three.js

My message was just to show what I had done with the library three.js and by helping me from already existing site.

My first link is to show a 3d maze game:

The second one I just created is to show the 3d flags. I added a page displaying the flags of the last 3 registered on my website and the last visitors:
https://bzhgames.xyz/stats2.php

By the way, with the library I use for flags, I can not use some objects like 3d text for example. Would someone have the same problem? and a solution?

2 Likes

Sorry your posts were flagged, the auto spam filter is pretty strict on new users who post links.

I’ve unflagged your posts, it should be less strict on you from now on :relaxed:

1 Like

Thank you for your answer.

1 Like

I noticed that my page with the flags I crash FireFox if I left it open after about 1 hour.
I do not have the problem with IE or Chrome.

Have any of them ever had problems with three.js under Firefox ?
I do not know if the problem comes from my computer or Firefox.

Thank you to those who want to enlighten me.

Hi,

My messages are still hidden?

Hi all,

I add new 3D game : Marvel Memory.

Try it !

memory2

Hi,

Just a little note to inform you that I had to change a hoster for my site.
You can now test 3D games on the BZH Games website at https://bzhgames.xyz
Feel free to leave comments if you encounter problems or for any suggestion.

Thank you in advance for your visit

bzhgames-250

2 Likes

“You must login to continue”? :confounded:

3 Likes

Hi marquizzo,

Yes.
There is a ranking of the players on the games. So I need the players to be identified to define the ranking.

Maybe I should offer for each game, a version without ranking where there is no need to identify, just to try the games. I’ll think about it.

29 oct.
Hi,

Now you can try the game in the logged.
I hope you will try :wink:

Good game :video_game:

1 Like

Hi everybody,

I am looking for a free software to model animated 3d characters to integrate them into a game with three.js.
I did not find anything in the different discussions.
Can someone advise me software to use?

thank you in advance for your help

Hello all,

Just to let you know that on Marvel Memory, I added the ability to play against the Bot if you do not find an opponent.

Good game

If there is no opponent online, you can now play against a bot

Hello everyone,

Just for you inform that it is now possible to connect with his Twitter account

Good game

Hello

I have a question about a problem with the transparency of PNG images.

On the Marvel Memory game I created, I display maps where I load the images with the following instructions:
var textureBack = new THREE.TextureLoader (). load
var material1 = new THREE.MeshPhongMaterial ({color: 0xFFFFFF, map: textureFront, shininess: 100, transparent: false});

And I do not know why, in general I have no problem, the transparent part is displayed in black and for some images, the transparent part is colored.

Do you have an idea of the problem ?

I have problems of transparency with PNG-8, try PNG-24 if it’s not already ?

Thank you very much for this information, I will try tonight.

transparent: false is a likely cause of the problem.

I am sorry to see that your posts have been (almost) ignored for so long time. Do you have an updated link to the flag demo, that does not require registration/login?

I registered, anyway. Tried the Tetris clone. It works fine, except that the arrow keys scroll the page in addition to moving/rotating the bricks. You can avoid this by calling event.preventDefault() in the event handler (assuming the callback parameter is named event), and also I think it may be wise to make sure that the event handler is attached to the game DOM Element, to still allow scrolling when the game is not in focus.

1 Like

Hi EliasHasle,

Thank you for your message.
I just updated the link for the flags.
And I will test by modifying (transparent: false) to see if it corrects the problem.

Thanks also for this information. I will try to correct all that.