You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
658 B
39 lines
658 B
10 years ago
|
using UnityEngine;
|
||
|
using System;
|
||
|
using System.Collections;
|
||
|
|
||
|
namespace Fungus.Script
|
||
|
{
|
||
|
|
||
|
public class FadeSprite : FungusCommand
|
||
|
{
|
||
|
public float duration;
|
||
|
public SpriteRenderer spriteRenderer;
|
||
|
public Color targetColor = Color.white;
|
||
|
public bool waitUntilFinished = true;
|
||
|
|
||
|
public override void OnEnter()
|
||
|
{
|
||
|
Game game = Game.GetInstance();
|
||
|
|
||
|
if (waitUntilFinished)
|
||
|
{
|
||
|
game.waiting = true;
|
||
|
}
|
||
|
|
||
|
SpriteFader.FadeSprite(spriteRenderer, targetColor, duration, Vector2.zero, delegate {
|
||
|
if (waitUntilFinished)
|
||
|
{
|
||
|
game.waiting = false;
|
||
|
Continue();
|
||
|
}
|
||
|
});
|
||
|
|
||
|
if (!waitUntilFinished)
|
||
|
{
|
||
|
Continue();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|