Example #1
0
    private IEnumerator Routine_Color(Color color, float Seconds)
    {
        live2DModel.setTextureColor(0, color.r, color.g, color.b);
        yield return(new WaitForSeconds(Seconds));

        live2DModel.setTextureColor(0, 1.0f, 1.0f, 1.0f);
    }