Esempio n. 1
0
        // ================================================================ //

        public override void    start()
        {
            this.is_finished = false;

            this.step.set_next(STEP.READY);

            this.shoot = new ShootAction();
            this.shoot.create(this.behavior);

            this.warp = new WarpAction();
            this.warp.create(this.behavior);
        }
Esempio n. 2
0
	// ================================================================ //

	public override void	start()
	{
		this.is_finished = false;

		this.step.set_next(STEP.READY);

		this.shoot = new ShootAction();
		this.shoot.create(this.behavior);

		this.warp = new WarpAction();
		this.warp.create(this.behavior);
	}