View Single Post
  #1  
Old 07-16-2009, 05:02 AM
Ronnie Ronnie is offline
Registered User
Join Date: Jun 2008
Location: Nj, USA
Posts: 48
Ronnie is on a distinguished road
Send a message via AIM to Ronnie
Collision detection between gui controls.

Alright well, in a game i'm making I need to know if these 2 gui controls hit so, i tryed many methods i'm wondering why this one doesn't work, and or how I can make it work
PHP Code:
  // ron_dot & ron_plr are the gui control names
   
for(  0;  2;  .01 ) {
    
    if( 
ron_dot.ron_plr.) {
     
     for(  
0;  2;  .01 ){
     
      if( 
ron_plr.ron_dot.) {
    
       
player.chat "Hit";      

       }
      }
     }
    } 
then I also tried which semi works but not always.
PHP Code:
 //Using a bunch of cords and just checking if it matches?
  
this.xcords = { ron_dot.x,ron_dot..25ron_dot..5,ron_dot..75,ron_dot.x+1ron_dot.x1.5ron_dot.x+2,ron_dot..25,ron_dot..5,ron_dot..75,ron_dot.1ron_dot.1.5ron_dot.};
  
this.ycords = { ron_dot.y,ron_dot..25ron_dot..5,ron_dot..75,ron_dot.y+1ron_dot.y1.5ron_dot.y+2,ron_dot..25,ron_dot..5,ron_dot..75,ron_dot.1ron_dot.1.5ron_dot.};
  if ( 
ron_plr.x in this.xcords ) {
   if ( 
ron_plr.y in this.ycords ) {
    
player.chat "Hit";
   }
  } 
thanks in advance!.
Reply With Quote