Help for this page

Select Code to Download


  1. or download this
    if ($thing->position->x == 0 and $thing->position->y == 0) {
       ...;
    }
    
  2. or download this
    my $pos = $thing->position;
    if ($pos->x == 0 and $pos->y == 0) {
       ...;
    }