コード例 #1
0
    public Depressed(CubeBotGatherer gatherer /*,  Animator animator*/)
    {
        _gatherer = gatherer;

        isDepreesed = false;
        //_animator = animator;
    }
コード例 #2
0
ファイル: Happy.cs プロジェクト: Benyamin-A/BelievableBots
    //private Animator _animator;


    public Happy(CubeBotGatherer gatherer /*,  Animator animator*/)
    {
        _gatherer = gatherer;
        System.Console.WriteLine("Happy Entered");
        //_animator = animator;
    }
コード例 #3
0
ファイル: Scared.cs プロジェクト: Benyamin-A/BelievableBots
 public Scared(CubeBotGatherer gatherer /*,  Animator animator*/)
 {
     isScared  = false;
     _gatherer = gatherer;
     //_animator = animator;
 }
コード例 #4
0
ファイル: Angry.cs プロジェクト: Benyamin-A/BelievableBots
 public Angry(CubeBotGatherer gatherer /*,  Animator animator*/)
 {
     _gatherer = gatherer;
     //isAngry = false;
     //_animator = animator;
 }
コード例 #5
0
 private void Start()
 {
     timer = waitTime;
     bot   = GameObject.FindObjectOfType <CubeBotGatherer>();
     //friendBot = GameObject.Find("friendBot");
 }
コード例 #6
0
ファイル: Sad.cs プロジェクト: Benyamin-A/BelievableBots
 public Sad(CubeBotGatherer gatherer /*,  Animator animator*/)
 {
     _gatherer = gatherer;
     //isSad = false;
     //_animator = animator;
 }