31
NGUI 3 Support / Re: Need help with calling tween method
« on: August 23, 2013, 08:17:18 AM »
Open TweenScale.cs and search for static method Begin. Now you know what parameters you could use, and what its return. If you want something different from parameters, it must be applied in the return object. Ex:
Because it is a simple concept in programing, take a time to study, It will allow you be able to workround some simple problems.
- var tween = TweenScale.Begin(banner, 1f, Vector3.one * 2f);
- tween.from = Vector3.one * 0.5f;
Because it is a simple concept in programing, take a time to study, It will allow you be able to workround some simple problems.