Gamestudio Links
Zorro Links
Newest Posts
Zorro 2.70
by jcl. 09/29/25 09:24
optimize global parameters SOLVED
by dBc. 09/27/25 17:07
ZorroGPT
by TipmyPip. 09/27/25 10:05
assetHistory one candle shift
by jcl. 09/21/25 11:36
Plugins update
by Grant. 09/17/25 16:28
AUM Magazine
Latest Screens
Rocker`s Revenge
Stug 3 Stormartillery
Iljuschin 2
Galactic Strike X
Who's Online Now
1 registered members (TipmyPip), 18,388 guests, and 6 spiders.
Key: Admin, Global Mod, Mod
Newest Members
krishna, DrissB, James168, Ed_Love, xtns
19168 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Blocks vertexes #272705
06/19/09 11:21
06/19/09 11:21
Joined: Aug 2004
Posts: 1,345
Kyiv, Ukraine
VeT Offline OP
Serious User
VeT  Offline OP
Serious User

Joined: Aug 2004
Posts: 1,345
Kyiv, Ukraine
Greetings again, i'm back smile

How can i get vertex coordinates from bloaks to add them to collision tree for Newton?
http://www.opserver.de/ubb7/ubbthreads.php?ubb=showflat&Number=272550#Post272550


1st prize: Lite-C and Newton 2.17 by Vasilenko Vitaliy

Newton2 videos: http://tinyurl.com/NewtonVideos
LiteC+Newton2 discussion: http://tinyurl.com/NewtonWrapperDiscussion
Latest LiteC+Newton2 version(v23, from 29.10.2009): http://depositfiles.com/files/ae1l0tpro
Re: Blocks vertexes [Re: VeT] #272708
06/19/09 11:27
06/19/09 11:27
Joined: Jul 2000
Posts: 28,024
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 28,024
Frankfurt
You can get them through ent_getmesh, using the level_ent pointer (or just NULL) for level blocks:

http://manual.3dgamestudio.net/ent_mesh.htm

From the mesh you can extract the vertex and triangle buffers, and get the coordinates. Be aware that y and z are swapped.

LPD3DXMESH pMesh = ent_getmesh(…);
if (!pMesh) { // no more blocks… }
BYTEPTR pVB, pIB;
pMesh->LockVertexBuffer(0,&pVB); // pVB contains the vertices in D3DVERTEX format.
pMesh->LockIndexBuffer(0,&pIB); // pIB contains the triangle indices, 3 shorts per triangle.




Re: Blocks vertexes [Re: jcl] #272715
06/19/09 11:43
06/19/09 11:43
Joined: Aug 2004
Posts: 1,345
Kyiv, Ukraine
VeT Offline OP
Serious User
VeT  Offline OP
Serious User

Joined: Aug 2004
Posts: 1,345
Kyiv, Ukraine
thanks, i'd try this


1st prize: Lite-C and Newton 2.17 by Vasilenko Vitaliy

Newton2 videos: http://tinyurl.com/NewtonVideos
LiteC+Newton2 discussion: http://tinyurl.com/NewtonWrapperDiscussion
Latest LiteC+Newton2 version(v23, from 29.10.2009): http://depositfiles.com/files/ae1l0tpro

Moderated by  old_bill, Tobias 

Gamestudio download | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1