Several issues in 1.0.1 f1
7 years 1 month ago #2457
by tmxrlab
Several issues in 1.0.1 f1 was created by tmxrlab
1. I2 Text Animation is placed at Plugins folder, but I2 Common is at I2 folder. It cannot find those classes.
2. In TextAnimationsManager.cs,It causes out of bound error when running the sample scene.
It should be
Thank you very much.
2. In TextAnimationsManager.cs,
// Update all animations and then remove the ones that are not longer playing
for (int i = 0; i < tempList.Count; ++i)
{
var anim = mUpdate_Animations[i];
if (!anim.UpdateAnimations())
mUpdate_Animations.Remove(anim);
}
It should be
for (int i = tempList.Count-1; i >= 0 ; i--)
{
var anim = mUpdate_Animations[i];
if (!anim.UpdateAnimations())
mUpdate_Animations.Remove(anim);
}
Thank you very much.
Please Log in or Create an account to join the conversation.
2 years 10 months ago #4706
by thiagogo
Replied by thiagogo on topic Several issues in 1.0.1 f1
what you write is amazing, this knowledge helps me a lot in life, thank you for these wonderful things
moto x3m
Please Log in or Create an account to join the conversation.
Time to create page: 0.117 seconds