开发者

Which pixels did that drawmesh operation just draw to?

开发者 https://www.devze.com 2023-03-08 22:07 出处:网络
Ok, it\'s a relatively simple problem, I want to know where, in screen space, a particular mesh was just drawn. I plan on then storing that information in a data store of some kind so that when I inte

Ok, it's a relatively simple problem, I want to know where, in screen space, a particular mesh was just drawn. I plan on then storing that information in a data store of some kind so that when I interact with something in screen space, I can lookup in the register and find the object, i.e, click on 开发者_如何学Gothe spaceship drawn on the screen and then select target etc.

I can't find any way of finding out which pixels the mesh was drawn to though...

Alternatively, if I'm missing something obvious regarding what it is that I Want to do, please let me know!


There is no easy way to do that. But you can use another texture as render target and render those meshes with unique colors.

So for example you give #FF0000 to your mesh A and draw it also to your second render target with that color. Now when you select a pixel from 2nd render target and look at that color, if it is #FF0000 you can understand that, the pixel is a part of mesh A. Thus you can easily pick the mesh drawn on a certain pixel when you click one of those pixels.


Why dont you Unproject your screen space coords into 3D space? The only complication I had was the fact that I'd be left with a plane, I could check if a Mesh intersected with that plane but I often had multiple candidates for 'picking'.

Check out Google for DirectX Unproject and there are various articles discussing it. It's sometimes complicated for some to implement but done well it's actually pretty nifty; don't get put off by the people online who say it doesn't work, it does work!

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号