source: experiments/frams/deathmatch/data/scripts/deathmatch-smellPopulation.neuro @ 480

Last change on this file since 480 was 480, checked in by sz, 8 years ago

experiment scripts updated to match the upcoming Framsticks version (ExpParams? ==> ExpProperties?, Fields ==> NeuroProperties?, prop: ==> property)

File size: 702 bytes
Line 
1class:
2name:Sp
3longname:Smell population
4description:Detects the population given by the "pop" parameter
5prefoutput:1
6preflocation:1
7vhints:32
8# 32=receptor class
9icon:~
1064,5,7,100,50,90,50,90,40,70,40,80,50,70,60,90,60,90,50,3,10,40,15,45,15,55,10,60,5,20,30,25,35,30,45,30,55,25,65,20,70,4,15,35,20,40,22,50,20,60,15,65,5,75,50,50,50,45,45,40,50,45,55,50,50~
11code:~
12function init()
13{}
14
15function go()
16{
17  if (Populations.size>NeuroProperties.pop)
18        Neuro.state = Populations[NeuroProperties.pop].senseCreaturesProperty(
19                Neuro.position_x, Neuro.position_y, Neuro.position_z,
20                "energy", Neuro.creature);
21  else
22        Neuro.state=0;
23}
24~
25
26property:
27id:pop
28name:population
29type:d
Note: See TracBrowser for help on using the repository browser.