Пример #1
0
    void SpawnRandomText()
    {
        GameObject hej = Instantiate(textLM, Vector3.zero, Quaternion.identity);

        hej.transform.SetParent(fuckYou.transform);
        LifeTime script = hej.GetComponent <LifeTime>();

        int     index = Random.Range(0, posList.Length);
        Vector3 extra = posList[index];

        script.SetPosition(new Vector3(0f + fuckYou.transform.position.x, 0f + fuckYou.transform.position.y, 0f) + extra);

        index = Random.Range(0, rotationList.Length);
        float rotation = rotationList[index];

        script.SetRotation(Quaternion.Euler(0f, 0f, rotation));

        index = Random.Range(0, randomQuotes.Length);
        script.SetText(randomQuotes[index]);

        script.SetLifeTime(70f);
    }