Several issues in 1.0.1 f1

More
6 years 7 months ago #2457 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,
                // 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 causes out of bound error when running the sample scene.
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.

More
2 years 3 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.256 seconds
Template by JoomlaShine