예제 #1
0
    private void Start()
    {
        colorPlacer = GetComponent <ColorPlacer>();
        colors      = GetComponent <Colors>();
        recorder    = GetComponent <Recorder>();

        Detailed = detailed;

        StartCoroutine(ColorSequence());
    }
    void Start()
    {
        colorPlacer = GetComponent <ColorPlacer>();
        colors      = GetComponent <Colors>();

        if (colors.startIndex == 0)
        {
            frame = -2;
        }
        else
        {
            frame = 0;
        }

        DrawCurrent();
    }