Yurifag Posted October 26, 2014 Share Posted October 26, 2014 Hi there Babylon JS community,I'm really new to Babylon JS and 3D game development. My goal is to create a simple, not too fancy first person shooter.After I messed around with this library for a while I encountered some problems.I'm using a FreeCamera which is hooked to WASD for movement and the mouse cursor is locked to the canvas to make it "FPS like".My first problem is that I don't know how to get the point the camera is currently looking at as a vector to use rays for collision detection (to detect if you hit something). So I calculated it myself based on the camera's rotation, but the rays don't seem to hit the target on certain points. It's like an offset and I think it has to do with my calculation. I'm not really good at math and I don't see my mistake, sadly. var rotationX = camera.rotation.x % (2*pi); var rotationY = camera.rotation.y % (2*pi);if(rotationY < 0) { rotationY = 2*pi + rotationY; }var impulseY = -rotationX * (1 / (pi / 2));var impulseX = Math.sin(rotationY) - Math.abs(impulseY) * Math.sin(rotationY);var impulseZ = Math.cos(rotationY) - Math.abs(impulseY) * Math.cos(rotationY);var cameraDirection = new BABYLON.Vector3(impulseX, impulseY, impulseZ);var shot = new BABYLON.Ray(camera.position, cameraDirection.scale(100));var meshFound = scene.pickWithRay(shot);if(meshFound !== null && meshFound.pickedPoint != null) { console.log("hit", meshFound.pickedMesh.name, meshFound.pickedPoint);} Here you can see an example of what I mean including the code above:http://grzb.de/3D/test (wasd to move, left mouse button to "shoot" a ray, mesh information in console)Press CTRL + U to view the full source code on my site.My second problem is that the camera rotates "smoothly". It doesn't immediately stop when the mouse stops which of course isn't good for a FPS game.If anyone could help me with these problems I'd be very thankful. I've spent a long time now trying to figure out what's wrongwrong. Quote Link to comment Share on other sites More sharing options...
GameMonetize Posted October 27, 2014 Share Posted October 27, 2014 Hey, we have support for collisions out of the box for free: http://playground.babylonjs.com/?9 Quote Link to comment Share on other sites More sharing options...
Temechon Posted October 27, 2014 Share Posted October 27, 2014 Hey, welcome ! Did you take a look at this ? http://pixelcodr.com/tutos/shooter/shooter.html Cheers, Quote Link to comment Share on other sites More sharing options...
Yurifag Posted October 28, 2014 Author Share Posted October 28, 2014 Thanks Temechon, this really helps me out with my project and it solved my problem. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.