/minild29

To get this branch, use:
bzr branch http://9ix.org/bzr/minild29

« back to all changes in this revision

Viewing changes to Dark.h

  • Committer: Josh C
  • Date: 2011-09-18 16:12:57 UTC
  • Revision ID: josh@9ix.org-20110918161257-zshzdmi0e62idum1
some more stalk logic

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    Vector2 direction;
35
35
    float aiTime;
36
36
    float noiseTime;
37
 
    float graceTime;
38
37
    std::string state;
39
 
    float maxspeed;
40
38
 
41
39
    SpriteAnimation *sprite;
42
40
    AudioDeck *skitter1;
43
41
    AudioAsset *alert;
44
 
    AudioDeck *sniff;
45
 
    AudioAsset *freakout;
46
 
    AudioAsset *chomp;
 
42
    AudioAsset *stalk;
47
43
 
48
44
    int const FRICTION;
 
45
    float const MAXSPEED;
49
46
    int const ACCELERATION;
50
 
    float const DEFAULT_MAXSPEED;
51
47
    float const STALKSPEED;
52
 
    //float const HUNTSPEED;
 
48
    float const HUNTSPEED;
53
49
  };
54
50
 
55
51
  class Ping : public Entity
70
66
    DarkScene();
71
67
    void Begin();
72
68
    void Update();
73
 
    void HideSpawners();
74
 
    void ShowSpawners();
75
 
    void Spawn();
76
69
 
77
70
    LevelEditor *levelEditor;
78
71