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), 15,499 guests, and 5 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
trace hit a block or an entity? #65944
03/09/06 15:38
03/09/06 15:38
Joined: Feb 2003
Posts: 211
Unna
F
Freddy_dup1 Offline OP
Member
Freddy_dup1  Offline OP
Member
F

Joined: Feb 2003
Posts: 211
Unna
Hello,

if I use trace how can I get the info whether I hit a block or
an entity?

Something like:
Code:
if(you==entity){...}
if(you==block){...}



This doesn't work:
Code:
if(event_type==event_block){ ...}


Nothing happens...

Re: trace hit a block or an entity? [Re: Freddy_dup1] #65945
03/10/06 17:19
03/10/06 17:19
Joined: Jan 2006
Posts: 45
Yarcanox Offline
Newbie
Yarcanox  Offline
Newbie

Joined: Jan 2006
Posts: 45
Look at this:
Code:

trace_mode = ignore_passable + ignore_me;
you = null;
trace(my.x,vector(my.x + 1000,my.y,my.z)); //Trace forward
If (result > 0)&&(you == null) {//If that's true you hit the level/ground
}
If (result > 0)&&(you != null) {//If that's true you hit an entity



EDIT: Sorry, at first I answered in German

Last edited by BlueDeath; 03/10/06 17:21.

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