problems with 3d
-
I have been working on making a little open world multiplayer game for me and my friends to play but now i am having trouble with the player being restricted to a smaller area than the whole map even though other projects go beyond this border I don’t know what happening please help
https://play.creaticode.com/projects/6760316a56af495135f3e9ee
-
@sucram-dev where you intiialize/create the world,I’m guessing maybe you might wanna increase the world size from 2000x2000 to something like 10000x10000 or something else bigger you would have to mess around with it.
That might solve the problem
I think you might wanna use other projects like the 2 player 3D doom project as a starting point and then edit that to your likings and make it more sandbox-ish
-
@sucram-dev just tried out ur project and it’s neat
I see what you mean about like the bordered area and I’m sure that you just gotta change the world width and world height to something higher. I also recommend adding A and D controls for left and right since right now you can go right and left with the mouse and forward/back with W/S and it feels a tiny bit weird. You might also wanna make it so you can go up or like jump. That could be done with a message to the world i think since these blocks were designed for 2D but can also be used for 3D, it’s just the Y coordinate (up and down) need to be implemented another way, like with sending a jump message to the server and then handling it by making a drone go up. -
@jeffreyrb03-gmail thanks that fixed the problem right away I plan to keep updating this and eventually rpg elements
-
@jeffreyrb03-gmail I have also been thinking about making a game with ultrakill like movement
-
@sucram-dev Cool! I’m glad I could help. For your game I recommend adding a lot of more things to keep track of/save to the world like weapons and inventory and even saving stuff to a database/variables and also adding more to the title screen
-
@jeffreyrb03-gmail one more thing I was wondering though was how could make a sword follow the player (I swapped out the drone for an avatar) and move with the animations
-
@sucram-dev there’s a block to attach objects to avatars’ body parts, i was using it in my own game for avatar item testing ()
( in 3D Actions)
-
@jeffreyrb03-gmail they move with animations so like running, the hat will move too
-
@jeffreyrb03-gmail thanks