MovementPheromoneGland.py 340B

1234567891011
  1. from intelligine.simulation.object.pheromone.PheromoneGland import PheromoneGland
  2. class MovementPheromoneGland(PheromoneGland):
  3. def get_movement_molecules(self):
  4. """
  5. :return: pheromone_type, distance_from_objective
  6. """
  7. return self._pheromone_type, self._host.get_brain().get_distance_from_objective()