| 
 使用方法:放在game_player后面  
调用方法:在设置移动路线的脚本那项里面写上def后面的标签名 
欢迎复制、改造[code]class Game_Character  def py_eyes  if @x > $game_player.x     new_x = @x - $game_player.x  else     new_x = $game_player.x - @x  end  if @y > $game_player.y     new_y = @x - $game_player.y  else     new_y = $game_player.y - @y   end  if (new_y + new_x) >= 10    @opacity = 35    end  if (new_y + new_x)   |