예제 #1
0
    public void send_red(int start, int end)
    {
        if (GameDad.gamesover)
        {
            return; // no starseeds launch after game over
        }
        Vector3 startLocation = GameDad.whereisstar(start);
        Vector3 endLocation   = GameDad.whereisstar(end);

        make_starseed(start, startLocation, end, endLocation, 0.01f, true);
    }