Hello, i am new to NGUI. I imported NGUI 3.5.5 package in Unity, it works fine. All examples are working, and i don't receive any errors. But when i import NDATA package, errors appear:
In Unity Console
Assets/NData/NGUI/NData/NguiLocalizationKeyBinding.cs(18,27): error CS1061: Type `UILocalize' does not contain a definition for `Localize' and no extension method `Localize' of type `UILocalize' could be found (are you missing a using directive or an assembly reference?)
So error appear at
protected override void ApplyNewValue (string newValue)
{
_localize.key = newValue;
_localize.Localize(); // ERROR
}
and in NguiUtils.cs
output += Localization.instance.Get(key);
When I comment this two lines, errors disappear!