Ok, first you have to create a terrain or a plane (maybe your grid mesh ?).
You can use a mesh or BrumeSquareTextured. Let's name it 'ground' !
Once you're ready, you get the ray where your mouse is pointing :
- Code: Select all
BrumeRay ray = this.ActiveCamera.GetRayFromMouse();
Then you use PickObjects to get intersections with the ray. (you have to get all intersections as a character may be intersecting the ray, but all you want is the ray/ground intersection)
- Code: Select all
List<BrumeObject> objects;
List<float> distances;
this.PickObjects(ray, out objects, out distances);
now, you have to test if the objects list contains your ground object (plane or terrain).
If it is, just get the corresponding distance and compute the intersection point like this :
- Code: Select all
BrumeVector intersectionPoint = ray.Pos + ray.Dir * distance;
It's up to you now !