Hello,
how do I control for loop with a speed? I am looking for a smooth transition.
for(i = 0;i<15;i++)
{
for(j = 100;j>=0;j=j-20)
{
//I want to add speed here
skinnedMeshRenderer.SetBlendShapeWeight(i,j);
}
}